aboutsummaryrefslogtreecommitdiffstats
path: root/state.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'state.hpp')
-rw-r--r--state.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/state.hpp b/state.hpp
index e17d324..0308238 100644
--- a/state.hpp
+++ b/state.hpp
@@ -36,10 +36,11 @@ class State
public:
Addr ip = 0;
- Pass pass = Pass::None;
Dictionary& dict;
+ void (*input)(State&);
- constexpr State(Dictionary& d): dict(d) {}
+ constexpr State(Dictionary& d, void (*i)(State&)):
+ dict(d), input(i) {}
bool compiling() const;
void compiling(bool);