aboutsummaryrefslogtreecommitdiffstats
path: root/dictionary.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-09 21:54:58 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-09 21:54:58 -0500
commit18bcd5dd0e283100d25ca44e60f1705f3c028456 (patch)
treec254e759d7ff8251ad9cf7b8aaa03f86b84ad7d8 /dictionary.hpp
parent27742595b575c59b1f482e5a72195fdfbf16c5d6 (diff)
depth and more core.fth words
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;