achan1989 / ghidra-65816

WDC 65816 processor module for Ghidra
MIT License
22 stars 3 forks source link

Issue with CMP #3

Closed s5bug closed 5 years ago

s5bug commented 5 years ago

Manually disassembling C9 C1 F0 47 CE 30 0F gives

C9 C1       CMP.B #$0xc1
F0 47       BEQ $LAB_008e6f
CE 30 0F    DEC.W $0x0f30

but with this module it gives

C9 C1 F0    CMP #$0xf0c1
47 CE       EOR [<$0xce]
30 0F       BMI $LAB_008e38+2
s5bug commented 5 years ago

Going to close this one under the same premise as my last issue :P