aboutsummaryrefslogtreecommitdiffstats
path: root/state.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 /state.hpp
parent27742595b575c59b1f482e5a72195fdfbf16c5d6 (diff)
depth and more core.fth words
Diffstat (limited to 'state.hpp')
-rw-r--r--state.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/state.hpp b/state.hpp
index 6311949..e17d324 100644
--- a/state.hpp
+++ b/state.hpp
@@ -35,13 +35,15 @@ class State
Cell *rsp = rstack - 1;
public:
- bool compiling = false;
Addr ip = 0;
Pass pass = Pass::None;
Dictionary& dict;
constexpr State(Dictionary& d): dict(d) {}
+ bool compiling() const;
+ void compiling(bool);
+
Cell beyondip() const;
void pushr(Cell);