diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-20 19:28:46 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-20 19:28:46 -0500 |
commit | 5632b65540687ac89f154fde1acae023ecd894d2 (patch) | |
tree | aee9db0a9d2f0d1b3a9ed603fb288279a79f3801 /state.cpp | |
parent | bc118ad31f2d74b5d5e9e3742e52fc441722c679 (diff) |
fix execution lookup; add unloop
Diffstat (limited to 'state.cpp')
-rw-r--r-- | state.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -40,7 +40,7 @@ void State::compiling(bool yes) void State::execute(Addr addr) { - if (addr < Dictionary::Begin) { + if (addr < CoreWords::WordCount) { // Must be a core-word CoreWords::run(addr, *this); } else { @@ -51,7 +51,9 @@ void State::execute(Addr addr) ip += sizeof(Cell); const auto ins = dict.read(ip); - if (!CoreWords::run(ins, *this)) { + if (ins < CoreWords::WordCount) { + CoreWords::run(ins, *this); + } else { pushr(ip); ip = ins - sizeof(Cell); } |