We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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!
The text was updated successfully, but these errors were encountered: