aboutsummaryrefslogtreecommitdiffstats
path: root/dictionary.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-09 18:20:35 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-09 18:20:35 -0500
commit501ca28d509bf6f41ed5797fa68f07e37ab9a294 (patch)
tree4c100967b4393b95c81e644da8280e83aacf47ee /dictionary.hpp
parent5bc9e4d2add7d2185b2c57a18ebd15b31f5366bd (diff)
add more core.fth words
Diffstat (limited to 'dictionary.hpp')
-rw-r--r--dictionary.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/dictionary.hpp b/dictionary.hpp
index add7fc3..2a54a5d 100644
--- a/dictionary.hpp
+++ b/dictionary.hpp
@@ -27,7 +27,7 @@
class Dictionary
{
public:
- Addr here = 1;
+ Addr here = 1; // address zero will be used for BASE.
Addr latest = 0;
virtual Cell read(Addr) const = 0;