aboutsummaryrefslogtreecommitdiffstats
path: root/state.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-19 18:44:10 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-19 18:44:10 -0500
commitd1cf88229d7a30561e6f75d3543a719f8c798b91 (patch)
tree3cdb237c80e524167697940f11c73616014a26a0 /state.cpp
parent171b82dab0d6e35ad7b57a4c750333c95b802b0e (diff)
do loops, executor fixes
Diffstat (limited to 'state.cpp')
-rw-r--r--state.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/state.cpp b/state.cpp
index 6d056ba..2f1990b 100644
--- a/state.cpp
+++ b/state.cpp
@@ -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);
}
}