diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-26 08:37:24 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-26 08:37:24 -0500 |
commit | 42d64c6da242bd100533ab0c31c3835b50fa1b2d (patch) | |
tree | d8cd79a55875b0daee738a99d6fda49401dffb20 /state.cpp | |
parent | 739fce1848538a92f9ae2ca893b65fbd50e6a720 (diff) |
optimize ip incrementation
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); } } |