Browse Source

Fixed a horrible typo. >:(

master
Ian Burgmyer 4 years ago
parent
commit
d63d219aa8
  1. 8
      cpu/miscInstrs.asm

8
cpu/miscInstrs.asm

@ -323,7 +323,7 @@ testRlcCarry: ; 2b
bit 0, a
ret nz ; LSB check (should be 0)
bit 1, a
ret z ; rotateion check (bit 1 should be 1)
ret z ; rotation check (bit 1 should be 1)
set 1, b
ret
@ -355,7 +355,7 @@ testRlCarry: ; 3b
bit 0, a
ret z ; LSB check (should be 1)
bit 1, a
ret nz ; rotateion check (bit 1 should be 0)
ret nz ; rotation check (bit 1 should be 0)
set 1, b
ret
@ -559,7 +559,7 @@ testRlcaCarry: ; 9b
bit 0, a
ret nz ; LSB check (should be 0)
bit 1, a
ret z ; rotateion check (bit 1 should be 1)
ret z ; rotation check (bit 1 should be 1)
set 1, b
ret
@ -591,7 +591,7 @@ testRlaCarry: ; 10b
bit 0, a
ret z ; LSB check (should be 1)
bit 1, a
ret nz ; rotateion check (bit 1 should be 0)
ret nz ; rotation check (bit 1 should be 0)
set 1, b
ret

Loading…
Cancel
Save