From d63d219aa8204051cda5b86fb2645784acdc1cfc Mon Sep 17 00:00:00 2001 From: Ian Burgmyer Date: Thu, 24 Sep 2020 20:07:25 -0400 Subject: [PATCH] Fixed a horrible typo. >:( --- cpu/miscInstrs.asm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cpu/miscInstrs.asm b/cpu/miscInstrs.asm index 0f1c050..234a9c1 100644 --- a/cpu/miscInstrs.asm +++ b/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