Ordering of operations bug
Closed this issue · 1 comments
DracoDrake commented
When compiling for emscripten
addr = pc +(int8_t)fetch();
evaluates one less sometimes.
addr = (int8_t)fetch() + pc;
works correctly
EtchedPixels commented
Fixed thanks