diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 20:30:09 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 20:30:09 -0500 |
commit | 4accf644f6e23878825b4af0e3d779c8c183cb52 (patch) | |
tree | d63c2ff76dfe4863489b153cb6798923a3d4d2a0 /corewords.cpp | |
parent | 78507c65c4ab649bbb0655d9485bf2f6e712af5c (diff) |
add else
Diffstat (limited to 'corewords.cpp')
-rw-r--r-- | corewords.cpp | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/corewords.cpp b/corewords.cpp index 6aac65e..d016ba1 100644 --- a/corewords.cpp +++ b/corewords.cpp @@ -52,8 +52,9 @@ Func CoreWords::get(int index) case 28: return op_const; case 29: return op_if; case 30: return op_then; - case 31: return op_literal; - case 32: return op_jump; + case 31: return op_else; + case 32: return op_literal; + case 33: return op_jump; default: return nullptr; } } @@ -273,7 +274,22 @@ int CoreWords::op_then(State& state) { if (state.compiling) { const auto ifaddr = state.pop(); + if (state.dict.read(ifaddr) == 0) + state.dict.write(ifaddr, state.dict.here); + } + + return 0; +} + +int CoreWords::op_else(State& state) +{ + if (state.compiling) { + const auto ifaddr = state.pop(); + state.push(state.dict.here); + state.dict.add(0); state.dict.write(ifaddr, state.dict.here); + } else { + state.ip = state.beyondip() - 1; } return 0; |