diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-10-27 21:11:44 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-10-27 21:11:44 -0400 |
commit | 91566e20e85cd2b504da7579dfca6df592ea7b30 (patch) | |
tree | 9bed62a7950fe2541595fa7b75d7c8b60369cb76 /libalee/dictionary.hpp | |
parent | 3bb6ecbb2387614f352291920b3808e0b0808889 (diff) |
fix core and core-ext impl to pass all tests
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); |