Specy/asm-editor

Double pre decrement/post increment

Specy opened this issue · 1 comments

Specy commented

When using post increment/pre decrement operands, if the destination register is both read and written to, the increment/decrement will be executed twice, ex: add.l d0, (a0)+ will increment a0 by 4 twice, so the result will be 8 instead of 4

Specy commented

Fixed in 4800e89