Comment on Rockwell65c02 difference

This commit is contained in:
Ivan Izaguirre 2021-09-27 20:46:43 +02:00
parent 71fd530e26
commit a93a32f63e
1 changed files with 6 additions and 0 deletions

View File

@ -57,6 +57,12 @@ func add65c02NOPs(opcodes *[256]opcode) {
// BBR and BBS: opcodes[i+0x0f] = nop11
}
/* Changes for Rockwell65c02
nop12 := opcode{"NOP", 1, 2, modeImplicit, opNOP}
opcodes[0xcb] = nop12
opcodes[0xdb] = nop24
*/
// Detection of 65c816
opcodes[0xbf].name = "XCE"
}