aboutsummaryrefslogtreecommitdiffstats
path: root/corewords.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-16 20:12:03 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-16 20:12:03 -0500
commite45926fa2a1bc332214f0467de6020529d91b7ba (patch)
treed9d1d32f9dc23ad145b0a73aeb4b537314188ad1 /corewords.hpp
parenta506b65bdd589997195e3f93222c37a539a29a28 (diff)
handle input within dictionary
Diffstat (limited to 'corewords.hpp')
-rw-r--r--corewords.hpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/corewords.hpp b/corewords.hpp
index 24e1415..ed57dd6 100644
--- a/corewords.hpp
+++ b/corewords.hpp
@@ -35,8 +35,8 @@ public:
constexpr static Cell Immediate = (1 << 5);
constexpr static Cell CoreImmediate = (1 << 6);
- static int findi(std::string_view);
- static Func find(std::string_view);
+ static int findi(State&, Word);
+ static Func find(State&, Word);
static void run(int, State&);
private:
@@ -45,7 +45,7 @@ private:
"+\0-\0*\0/\0%\0"
"_@\0_!\0rot\0>r\0r>\0"
"=\0<\0allot\0&\0|\0"
- "^\0<<\0>>\0(\0:\0"
+ "^\0<<\0>>\0(\0:\1"
";\1here\0imm\0const\0"
"if\1then\1else\1depth\0";
@@ -86,6 +86,8 @@ private:
static int op_then(State&);
static int op_else(State&);
static int op_depth(State&);
+ static int op_key(State&);
+ static int op_word(State&);
};
#endif // ALEEFORTH_COREWORDS_HPP