diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-04 09:51:08 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-04 09:51:08 -0500 |
commit | a529c1591826c120703afd7b88b245f7f659214c (patch) | |
tree | db0992c7afc3356a0fbf64e616a1f3e25199e443 /dictionary.hpp | |
parent | 18a4c6111f3cff40bcd81f3b91aeb34a8fab6bbc (diff) |
add case/endcase of/endof
Diffstat (limited to 'dictionary.hpp')
-rw-r--r-- | dictionary.hpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/dictionary.hpp b/dictionary.hpp index 235bd78..4dcae77 100644 --- a/dictionary.hpp +++ b/dictionary.hpp @@ -24,6 +24,17 @@ #include <cstddef> #include <cstdint> +/** + * Dictionary entry format: + * - 1 information byte + * bits 0..4: Length of name (L) + * bit 5: Immediate? + * bits 6..15: Distance to next entry (negative) + * - L bytes of name + * - 0+ bytes for address alignment + * - 0+ bytes of entry's data... + */ + class Dictionary { public: @@ -34,7 +45,7 @@ public: 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 InputCells = 82; // bytes! + constexpr static Addr InputCells = 80; // bytes! constexpr static Addr Begin = sizeof(Cell) * 7 + InputCells; void initialize(); |