diff options
Diffstat (limited to 'source/state.hpp')
-rw-r--r-- | source/state.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/state.hpp b/source/state.hpp index 8bdc5dc..b6e5bcf 100644 --- a/source/state.hpp +++ b/source/state.hpp @@ -22,7 +22,7 @@ constexpr Addr DS = 16; /** Data stack size */ constexpr Addr RS = 16; /** Return stack size */ -constexpr auto DictSize = 4096u; /** Dictionary size */ +constexpr auto DictSize = 2048u; /** Dictionary size */ constexpr Addr DIdxBase = 0; constexpr Addr DIdxHere = 1; @@ -39,6 +39,7 @@ constexpr Addr DIdxBegin = DIdxInBuf + 80 * sizeof(char); */ extern std::array<Cell, DictSize> DICT; +extern Cell& BASE; extern Cell& HERE; /** Linked to HERE's storage in DICT. */ extern Cell& LATEST; /** Linked to LATEST's storage in DICT. */ extern Cell& STATE; /** Linked to STATE's storage in DICT. */ |