diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-10-14 17:38:12 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-10-14 17:38:12 -0400 |
commit | 0b2ef84376c6837f494bf86a258f14717a9f1a99 (patch) | |
tree | bc5e8115fb6952e3059b2c26e2803c6723d3650d | |
parent | f7a9103bbef39b7f6c5909d7f74fa2aea4b81fe1 (diff) |
align builtin dictionary
-rw-r--r-- | alee-standalone.cpp | 1 | ||||
-rw-r--r-- | msp430/alee-msp430.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/alee-standalone.cpp b/alee-standalone.cpp index 488d3ba..d2151c8 100644 --- a/alee-standalone.cpp +++ b/alee-standalone.cpp @@ -24,6 +24,7 @@ #include <iostream> #include <vector> +alignas(sizeof(Cell)) #include "core.fth.h" static bool okay = false; diff --git a/msp430/alee-msp430.cpp b/msp430/alee-msp430.cpp index b4f1b04..3d660a7 100644 --- a/msp430/alee-msp430.cpp +++ b/msp430/alee-msp430.cpp @@ -22,6 +22,7 @@ #include <msp430.h> +alignas(sizeof(Cell)) #include "core.fth.h" static char strbuf[32]; |