aboutsummaryrefslogtreecommitdiffstats
path: root/msp430/alee-msp430.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-11-02 20:50:47 -0400
committerClyne Sullivan <clyne@bitgloo.com>2023-11-02 20:50:47 -0400
commitea026f8d67c411fc4a0d8b255a2653753258175e (patch)
tree90b24cd555709b52ca50cfd6d629b2e565a7613b /msp430/alee-msp430.cpp
parentb26edffda07b017b5a385491d7232efce0020631 (diff)
running on the devboard
Diffstat (limited to 'msp430/alee-msp430.cpp')
-rw-r--r--msp430/alee-msp430.cpp13
1 files changed, 10 insertions, 3 deletions
diff --git a/msp430/alee-msp430.cpp b/msp430/alee-msp430.cpp
index fba9c6f..92f3aa5 100644
--- a/msp430/alee-msp430.cpp
+++ b/msp430/alee-msp430.cpp
@@ -18,14 +18,16 @@
#include "alee.hpp"
#include "libalee/ctype.hpp"
-#include "splitmemdict.hpp"
#include <msp430.h>
+#include "splitmemdictrw.hpp"
+
alignas(sizeof(Cell))
+__attribute__((section(".text")))
#include "core.fth.h"
-static char strbuf[32];
+static char strbuf[80];
static void readchar(State& state);
static void serput(int c);
@@ -38,14 +40,19 @@ static void initUART();
static void Software_Trim();
#define MCLK_FREQ_MHZ (8) // MCLK = 8MHz
+//__attribute__((section(".upper.bss")))
+//static uint8_t hidict[16384];
+
int main()
{
WDTCTL = WDTPW | WDTHOLD;
initGPIO();
initClock();
initUART();
+ SYSCFG0 = FRWPPW;
- static SplitMemDict<alee_dat_len> dict (alee_dat);
+ (void)alee_dat_len;
+ static SplitMemDictRW<sizeof(alee_dat), /*sizeof(hidict)*/16384> dict (alee_dat, 0x10000/*(uint32_t)hidict*/);
State state (dict, readchar);
serputs("alee forth\n\r");