aboutsummaryrefslogtreecommitdiffstats
path: root/dictionary.hpp
diff options
context:
space:
mode:
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();