Skip to content

Commit 61015d4

Browse files
committed
SBC A,A
1 parent fdf27ed commit 61015d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dasm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ impl CPU {
335335
let addr = self.reg.get_hl();
336336
format!("9E SBC A,(${:04X})", addr)
337337
},
338-
0x9F => String::from("9F SBC A,A"), // SBC A,A
338+
0x9F => String::from("9F SBC A,A"), // SBC A,A
339339

340340
0xDE => { // SBC A,n
341341
let n = self.bus.read_byte(address + 1);

0 commit comments

Comments
 (0)