From 5b2b037bc230953d9280a013c69d3d32af1d7152 Mon Sep 17 00:00:00 2001 From: Astrid Smith Date: Fri, 24 Jun 2011 02:51:22 -0700 Subject: HOLY CRAP IT PRINTED A STRING --- flags.asm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'flags.asm') diff --git a/flags.asm b/flags.asm index 0377108..4250d4f 100644 --- a/flags.asm +++ b/flags.asm @@ -62,8 +62,8 @@ FNC_ok: andi.b #%00000001,d1 rts - ;; Normalize and return inverse of emulated Zero bit (loaded - ;; into host zero flag) + ;; Normalize and return **INVERSE** of emulated Zero bit + ;; (loaded into host's zero flag) ;; Destroys d1 f_norm_z: @@ -76,7 +76,7 @@ FNZ_ok: andi.b #%01000000,d1 rts - ;; Normalize and return inverse of emulated Parity/oVerflow + ;; Normalize and return **INVERSE** of emulated Parity/oVerflow ;; bit (loaded into host zero flag) ;; Destroys d1 @@ -192,7 +192,7 @@ flags_normalize: not.b d0 and.b d0,d1 ; Mask out all the unwanted bits not.b d0 - ori.b #%11000101,d0 + ori.b #%11000101,d0 ; These are the z80 flag register bits that can be derived from the 68k CCR. move.b d0,flag_valid-flag_storage(a3) or.b d1,flag_byte-flag_storage(a3) rts -- cgit v1.2.3