EtchedPixels/Centurion

Ordering of operations bug

Closed this issue · 1 comments

When compiling for emscripten

addr = pc +(int8_t)fetch();

evaluates one less sometimes.

addr = (int8_t)fetch() + pc;

works correctly

Fixed thanks