aboutsummaryrefslogtreecommitdiffstats
path: root/dictionary.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'dictionary.hpp')
-rw-r--r--dictionary.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/dictionary.hpp b/dictionary.hpp
index 2a54a5d..5c6471a 100644
--- a/dictionary.hpp
+++ b/dictionary.hpp
@@ -27,7 +27,10 @@
class Dictionary
{
public:
- Addr here = 1; // address zero will be used for BASE.
+ constexpr static Addr Base = 0;
+ constexpr static Addr Compiling = 1;
+
+ Addr here = 2;
Addr latest = 0;
virtual Cell read(Addr) const = 0;