aboutsummaryrefslogtreecommitdiffstats
path: root/state.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'state.cpp')
-rw-r--r--state.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/state.cpp b/state.cpp
index c27d95b..8e0f78d 100644
--- a/state.cpp
+++ b/state.cpp
@@ -37,12 +37,12 @@ State::Error State::execute(Addr addr)
if (!stat) {
if (addr < CoreWords::WordCount) {
CoreWords::run(addr, *this);
+ ip = 0;
} else {
auto ins = addr;
for (;;) {
CoreWords::run(ins, *this);
- ip += sizeof(Cell);
ins = dict.read(ip);
}
}