You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 68000 mode, opcode $60FF disassembles to ILLEGAL, because this bit bittern marks the BRA 32-bit-displacement instruction on the 68020+. On the 68000/68010, it should execute a BRA with a byte-displacement of $FF, I think.
The emulation code does the right thing. Hence, only the disassembler output is wrong.
More findings:
Opcode $60FF:
In 68000 mode, opcode $60FF disassembles to ILLEGAL, because this bit bittern marks the BRA 32-bit-displacement instruction on the 68020+. On the 68000/68010, it should execute a BRA with a byte-displacement of $FF, I think.
The emulation code does the right thing. Hence, only the disassembler output is wrong.
Opcode $61FF: Same as $60FF, just for BSR.
Opcode $f518: (
PFLUSH
on 68040+)On models 68030-, this opcode should trigger a line F exception (
m68ki_exception_1111
), not an illegal exception (m68ki_exception_illegal
).The text was updated successfully, but these errors were encountered: