diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-13 09:13:32 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-13 09:13:32 -0500 |
commit | af51fb5bdfd9c338b7cf8b75b792e04a2667af5e (patch) | |
tree | 0d6baf72acf05d263dcd8ed0b13888fb6265df81 /msp430 | |
parent | 5162349f925dfc48f7269538b9cdb1c06df8d5ff (diff) |
add LIBALEE_SECTION; minor fixes
Diffstat (limited to 'msp430')
-rw-r--r-- | msp430/alee-msp430.cpp | 31 | ||||
-rw-r--r-- | msp430/msp430fr2476.ld | 15 |
2 files changed, 40 insertions, 6 deletions
diff --git a/msp430/alee-msp430.cpp b/msp430/alee-msp430.cpp index 07ad80b..51f63f8 100644 --- a/msp430/alee-msp430.cpp +++ b/msp430/alee-msp430.cpp @@ -16,8 +16,7 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -#include "alee.hpp" -#include "libalee/ctype.hpp" +#include "libalee/alee.hpp" #include "lzss.h" static const #include "msp430fr2476_all.h" @@ -41,7 +40,9 @@ static void initUART(); static void Software_Trim(); #define MCLK_FREQ_MHZ (16) -#define ALEE_RODICTSIZE (9400) +static void alee_main(); + +#define ALEE_RODICTSIZE (9088) __attribute__((section(".lodict"))) #include "core.fth.h" @@ -55,11 +56,23 @@ static auto& dict = *(new (__dict) DictType (alee_dat, 0x10000)); int main() { WDTCTL = WDTPW | WDTHOLD; + + extern char __libaleebegin; + extern char __libaleeend; + extern char __libaleedst; + std::copy(&__libaleebegin, &__libaleeend, &__libaleedst); + initGPIO(); initClock(); initUART(); SYSCFG0 = FRWPPW; + alee_main(); +} + +LIBALEE_SECTION +void alee_main() +{ (void)alee_dat_len; State state (dict, readchar); Parser::customParse = findword; @@ -105,6 +118,7 @@ int main() } } +LIBALEE_SECTION void readchar(State& state) { auto idx = state.dict.read(Dictionary::Input); @@ -117,18 +131,21 @@ void readchar(State& state) state.dict.writebyte(addr, c ? c : ' '); } +LIBALEE_SECTION void serput(int c) { while (!(UCA0IFG & UCTXIFG)); UCA0TXBUF = static_cast<char>(c); } +LIBALEE_SECTION void serputs(const char *s) { while (*s) serput(*s++); } +LIBALEE_SECTION void printint(DoubleCell n, char *buf, int base) { static const char digit[] = "0123456789ABCDEF"; @@ -152,6 +169,7 @@ void printint(DoubleCell n, char *buf, int base) serput(' '); } +LIBALEE_SECTION void user_sys(State& state) { switch (state.pop()) { @@ -191,6 +209,11 @@ void user_sys(State& state) case 17: exitLpm |= true; break; + case 50: + Parser::customParse = nullptr; + extern char _etext; + state.push((Addr)&_etext); + break; default: break; } @@ -208,7 +231,7 @@ Error findword(State& state, Word word) uint8_t *ptr = lzword; for (auto it = word.begin(&state.dict); it != word.end(&state.dict); ++it) { *ptr = *it; - if (!isupper(*ptr)) + if (islower(*ptr)) *ptr -= 32; ++ptr; } diff --git a/msp430/msp430fr2476.ld b/msp430/msp430fr2476.ld index 574a76b..a65f652 100644 --- a/msp430/msp430fr2476.ld +++ b/msp430/msp430fr2476.ld @@ -44,7 +44,7 @@ MEMORY { BOOTCODE : ORIGIN = 0x1C00, LENGTH = 0x0400 /* END=0x1FFF, size 1024 */
ROMLIB : ORIGIN = 0xC0000, LENGTH = 0x4000 /* END=0xC3FFF, size 16384 */
BSL1 : ORIGIN = 0xFFC00, LENGTH = 0x0400 /* END=0xFFFFF, size 1024 */
- RAM : ORIGIN = 0x2000, LENGTH = 0x2000 /* END=0x3FFF, size 8192 */
+ RAM (rwx) : ORIGIN = 0x2000, LENGTH = 0x2000 /* END=0x3FFF, size 8192 */
INFOMEM : ORIGIN = 0x1800, LENGTH = 0x0200 /* END=0x19FF, size 512 */
FRAM (rwx) : ORIGIN = 0x8000, LENGTH = 0x7F80 /* END=0xFF7F, size 32640 */
HIFRAM (rxw) : ORIGIN = 0x10000, LENGTH = 0x00007FFF
@@ -218,6 +218,14 @@ SECTIONS PROVIDE (__dict = .);
} > TINYRAM
+ .libalee : {
+ . = ALIGN(2);
+ PROVIDE (__libaleedst = .);
+ *(.libalee)
+ } > RAM AT> FRAM
+ PROVIDE(__libaleebegin = LOADADDR(.libalee));
+ PROVIDE (__libaleeend = LOADADDR(.libalee) + SIZEOF(.libalee));
+
.data :
{
. = ALIGN(2);
@@ -295,11 +303,14 @@ SECTIONS KEEP (*(.init))
KEEP (*(.fini))
KEEP (*(.tm_clone_table))
+
+ . = ALIGN(2);
+ PROVIDE (_etext = .);
} > FRAM
.lodict :
{
- . = ALIGN(2);
+ . = ALIGN(1024);
*(.lodict)
} > FRAM
|