diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-19 11:52:18 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-19 11:52:18 -0500 |
commit | 171b82dab0d6e35ad7b57a4c750333c95b802b0e (patch) | |
tree | 3be66f5d834ba3f1ead15bb644b841918834a28a /dictionary.hpp | |
parent | 12cb6b9e5607e9db2255afd977814cbb0e3fceae (diff) |
fundamental compiling words
Diffstat (limited to 'dictionary.hpp')
-rw-r--r-- | dictionary.hpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/dictionary.hpp b/dictionary.hpp index 90234ba..e30858c 100644 --- a/dictionary.hpp +++ b/dictionary.hpp @@ -29,10 +29,11 @@ class Dictionary { public: constexpr static Addr Base = 0; - constexpr static Addr Compiling = Base + sizeof(Cell); - constexpr static Addr Input = Compiling + sizeof(Cell); // len data... + constexpr static Addr Compiling = sizeof(Cell); + constexpr static Addr Postpone = sizeof(Cell) * 2; + constexpr static Addr Input = sizeof(Cell) * 3; // len data... constexpr static Addr InputCells = 80; // bytes! - constexpr static Addr Begin = Input + sizeof(Cell) + InputCells; + constexpr static Addr Begin = sizeof(Cell) * 4 + InputCells; Addr here = Begin; Addr latest = Begin; |