diff options
Diffstat (limited to 'libalee/dictionary.hpp')
-rw-r--r-- | libalee/dictionary.hpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libalee/dictionary.hpp b/libalee/dictionary.hpp index b43ea2e..2b7afdf 100644 --- a/libalee/dictionary.hpp +++ b/libalee/dictionary.hpp @@ -47,11 +47,12 @@ public: constexpr static Addr Here = sizeof(Cell); constexpr static Addr Latest = sizeof(Cell) * 2; constexpr static Addr Compiling = sizeof(Cell) * 3; - constexpr static Addr Source = sizeof(Cell) * 4; - constexpr static Addr SourceLen = sizeof(Cell) * 5; - constexpr static Addr Input = sizeof(Cell) * 6; // len data... + constexpr static Addr CompToken = sizeof(Cell) * 4; + constexpr static Addr Source = sizeof(Cell) * 5; + constexpr static Addr SourceLen = sizeof(Cell) * 6; + constexpr static Addr Input = sizeof(Cell) * 7; // len data... constexpr static Addr InputCells = 80; // bytes! - constexpr static Addr Begin = sizeof(Cell) * 7 + InputCells; + constexpr static Addr Begin = sizeof(Cell) * 8 + InputCells; constexpr static Cell Immediate = (1 << 5); |