aboutsummaryrefslogtreecommitdiffstats
path: root/dictionary.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-04 07:02:22 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-03-04 07:02:22 -0500
commita51428cff0b7d16e7e0b5e5bfd05c47ab55e4fa2 (patch)
treef29699ece46316faab4786d8618da34581059231 /dictionary.hpp
parent0a294fa8cc8f9f5c491a3aec4ff416a455d6ebef (diff)
evaluate complete
Diffstat (limited to 'dictionary.hpp')
-rw-r--r--dictionary.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/dictionary.hpp b/dictionary.hpp
index 20ac7e4..235bd78 100644
--- a/dictionary.hpp
+++ b/dictionary.hpp
@@ -32,9 +32,10 @@ public:
constexpr static Addr Latest = sizeof(Cell) * 2;
constexpr static Addr Compiling = sizeof(Cell) * 3;
constexpr static Addr Source = sizeof(Cell) * 4;
- constexpr static Addr Input = sizeof(Cell) * 5; // len data...
+ 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 Begin = sizeof(Cell) * 6 + InputCells;
+ constexpr static Addr Begin = sizeof(Cell) * 7 + InputCells;
void initialize();