From: ceriel Date: Fri, 16 Oct 1992 15:43:46 +0000 (+0000) Subject: small fix: carry was not always clear before the 'sbc' X-Git-Tag: release-5-5~392 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=67d5d2d6c409fe3e757abd61ea59b7d1ffeb135b;p=ack.git small fix: carry was not always clear before the 'sbc' --- diff --git a/mach/z80/libmon/head_em.s b/mach/z80/libmon/head_em.s index da5dfec34..251bd5828 100644 --- a/mach/z80/libmon/head_em.s +++ b/mach/z80/libmon/head_em.s @@ -25,6 +25,7 @@ ld h,d ld l,e ld bc,begbss + xor a ! to clear carry sbc hl,bc ld a,h or l diff --git a/mach/z80/libsys/head_em.s b/mach/z80/libsys/head_em.s index da5dfec34..251bd5828 100644 --- a/mach/z80/libsys/head_em.s +++ b/mach/z80/libsys/head_em.s @@ -25,6 +25,7 @@ ld h,d ld l,e ld bc,begbss + xor a ! to clear carry sbc hl,bc ld a,h or l