diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-26 08:10:43 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-26 08:10:43 -0500 |
commit | 739fce1848538a92f9ae2ca893b65fbd50e6a720 (patch) | |
tree | b5e37e29c67fc4a7577606eea99a9e5ddc8084f3 /state.cpp | |
parent | eb6009acbf97b364c63f4ada1dfde29d9e224d55 (diff) |
pull exit check out of State::execute
Diffstat (limited to 'state.cpp')
-rw-r--r-- | state.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -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; |