diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-02 18:01:34 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-02 18:01:34 -0500 |
commit | 2ece0e4993c838f620e5c19dfa04a86d9d35df49 (patch) | |
tree | de8c4ad3b3772e7fdc44e564daeefedd4b2bc8fc /dictionary.hpp | |
parent | d175fa6a882805212cd489d6afbda9f54443bd7b (diff) |
major compliance refactor; undo packed literals for now
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 1321875..48d4e1b 100644 --- a/dictionary.hpp +++ b/dictionary.hpp @@ -31,10 +31,11 @@ public: constexpr static Addr Here = sizeof(Cell); constexpr static Addr Latest = sizeof(Cell) * 2; constexpr static Addr Compiling = sizeof(Cell) * 3; - constexpr static Addr Postpone = sizeof(Cell) * 4; - constexpr static Addr Input = sizeof(Cell) * 5; // len data... + constexpr static Addr Input = sizeof(Cell) * 4; // len data... constexpr static Addr InputCells = 80; // bytes! - constexpr static Addr Begin = sizeof(Cell) * 6 + InputCells; + constexpr static Addr Begin = sizeof(Cell) * 5 + InputCells; + + void initialize(); Addr here() const noexcept { return read(Here); } void here(Addr l) noexcept { write(Here, l); } |