diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-19 18:44:10 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-19 18:44:10 -0500 |
commit | d1cf88229d7a30561e6f75d3543a719f8c798b91 (patch) | |
tree | 3cdb237c80e524167697940f11c73616014a26a0 /state.cpp | |
parent | 171b82dab0d6e35ad7b57a4c750333c95b802b0e (diff) |
do loops, executor fixes
Diffstat (limited to 'state.cpp')
-rw-r--r-- | state.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -49,7 +49,12 @@ void State::execute(Addr addr) do { ip += sizeof(Cell); - CoreWords::run(dict.read(ip), *this); + + const auto ins = dict.read(ip); + if (!CoreWords::run(ins, *this)) { + pushr(ip); + ip = ins - sizeof(Cell); + } } while (ip); } } |