diff options
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); |