Open Ramsis-SNES opened 2 years ago
SPC700 opcode/instruction 1F 00 00 is disassembled to jmp ($0000+x), which doesn't appear to be standard format/syntax.
1F 00 00
jmp ($0000+x)
The correct format/syntax should be jmp [!$0000+x].
jmp [!$0000+x]
Thanks!
SPC700 opcode/instruction
1F 00 00
is disassembled tojmp ($0000+x)
, which doesn't appear to be standard format/syntax.The correct format/syntax should be
jmp [!$0000+x]
.Thanks!