From bc118ad31f2d74b5d5e9e3742e52fc441722c679 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 20 Feb 2023 19:00:30 -0500 Subject: concise parser; >body, >in, source --- corewords.hpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'corewords.hpp') 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&); -- cgit v1.2.3