diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-20 19:00:30 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-20 19:00:30 -0500 |
commit | bc118ad31f2d74b5d5e9e3742e52fc441722c679 (patch) | |
tree | 233ca7ea9ad2b9ad65b1c45c132b3d5e2375e015 /corewords.hpp | |
parent | 6ef7f7ce8548f6e6c60d3b444a087722f354a53f (diff) |
concise parser; >body, >in, source
Diffstat (limited to 'corewords.hpp')
-rw-r--r-- | corewords.hpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/corewords.hpp b/corewords.hpp index af719b7..0c00100 100644 --- a/corewords.hpp +++ b/corewords.hpp @@ -29,9 +29,7 @@ void user_sys(State&); class CoreWords { public: - constexpr static std::size_t VisibleWordCount = 37; // size - constexpr static auto HiddenWordJump = VisibleWordCount; // index - constexpr static auto WordCount = VisibleWordCount + 1; // size + constexpr static std::size_t WordCount = 37; constexpr static Cell Immediate = (1 << 5); constexpr static Cell Compiletime = (1 << 6); @@ -85,7 +83,6 @@ private: static void op_here(State&); static void op_const(State&); static void op_lit(State&); - static void op_jump(State&); static void op_depth(State&); static void op_key(State&); static void op_exit(State&); |