diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 21:54:58 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 21:54:58 -0500 |
commit | 18bcd5dd0e283100d25ca44e60f1705f3c028456 (patch) | |
tree | c254e759d7ff8251ad9cf7b8aaa03f86b84ad7d8 /state.cpp | |
parent | 27742595b575c59b1f482e5a72195fdfbf16c5d6 (diff) |
depth and more core.fth words
Diffstat (limited to 'state.cpp')
-rw-r--r-- | state.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -20,6 +20,16 @@ #include <iterator> +bool State::compiling() const +{ + return dict.read(Dictionary::Compiling); +} + +void State::compiling(bool yes) +{ + dict.write(Dictionary::Compiling, yes); +} + Cell State::beyondip() const { return dict.read(ip + 1); |