aboutsummaryrefslogtreecommitdiffstats
path: root/state.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'state.cpp')
-rw-r--r--state.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/state.cpp b/state.cpp
index 56ad8cd..c27d95b 100644
--- a/state.cpp
+++ b/state.cpp
@@ -35,20 +35,20 @@ State::Error State::execute(Addr addr)
{
auto stat = setjmp(jmpbuf);
if (!stat) {
- ip = 0;
+ if (addr < CoreWords::WordCount) {
+ CoreWords::run(addr, *this);
+ } else {
+ auto ins = addr;
- auto ins = addr;
- for (;;) {
- CoreWords::run(ins, *this);
-
- if (!ip)
- break;
-
- ip += sizeof(Cell);
- ins = dict.read(ip);
+ for (;;) {
+ CoreWords::run(ins, *this);
+ ip += sizeof(Cell);
+ ins = dict.read(ip);
+ }
}
} else {
- return static_cast<State::Error>(stat);
+ auto err = static_cast<State::Error>(stat);
+ return err == State::Error::exit ? State::Error::none : err;
}
return State::Error::none;