diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2025-01-27 15:51:03 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2025-01-27 15:51:03 -0500 |
commit | f88ad6651b961781d67e79e282cdf2189bc52f2d (patch) | |
tree | 7ca8c31b30169667239c9b9769384226a4982363 /foci.h | |
parent | 9592fbf2684b1f3f1892bf02404e41f209b0c5ac (diff) |
msp430 improvements; fix compname bug
Diffstat (limited to 'foci.h')
-rw-r--r-- | foci.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -82,9 +82,9 @@ register intptr_t * sp asm("r4"); // pointer to stack cells register intptr_t *** rp asm("r5"); // stack of pp register intptr_t ** pp asm("r6"); // pointer to ip register intptr_t tmp asm("r7"); -#define STASH asm("push r4; push r5; push r6") -#define RESTORE asm("pop r6; pop r5; pop r4") -#define NEXT asm("incd r6;\n br @r6") +#define STASH asm("push r4\npush r5\npush r6") +#define RESTORE asm("pop r6\npop r5\npop r4") +#define NEXT asm("incd r6\nbr @r6") #endif // FOCI_MSP430 extern void foci_putchar(int); |