diff options
Diffstat (limited to 'state.cpp')
-rw-r--r-- | state.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } } |