aboutsummaryrefslogtreecommitdiffstats
path: root/corewords.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-09 20:30:09 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-09 20:30:09 -0500
commit4accf644f6e23878825b4af0e3d779c8c183cb52 (patch)
treed63c2ff76dfe4863489b153cb6798923a3d4d2a0 /corewords.hpp
parent78507c65c4ab649bbb0655d9485bf2f6e712af5c (diff)
add else
Diffstat (limited to 'corewords.hpp')
-rw-r--r--corewords.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/corewords.hpp b/corewords.hpp
index 7edc139..0b84b0e 100644
--- a/corewords.hpp
+++ b/corewords.hpp
@@ -27,7 +27,7 @@ int user_sys(State&);
class CoreWords
{
public:
- constexpr static std::size_t VisibleWordCount = 31; // size
+ constexpr static std::size_t VisibleWordCount = 32; // size
constexpr static auto HiddenWordLiteral = VisibleWordCount; // index
constexpr static auto HiddenWordJump = VisibleWordCount + 1; // index
constexpr static auto WordCount = HiddenWordJump + 1; // size
@@ -47,7 +47,7 @@ private:
"=\0<\0allot\0&\0|\0"
"^\0<<\0>>\0(\0:\0"
";\1here\0imm\0const\0"
- "if\1then\1";
+ "if\1then\1else\1";
static Func get(int);
@@ -84,6 +84,7 @@ private:
static int op_jump(State&);
static int op_if(State&);
static int op_then(State&);
+ static int op_else(State&);
};
#endif // ALEEFORTH_COREWORDS_HPP