From ff1ebc3ee35d7a4047e4a5332202ca246a03f091 Mon Sep 17 00:00:00 2001 From: zerico <71151164+ZERICO2005@users.noreply.github.com> Date: Wed, 4 Mar 2026 11:44:02 -0700 Subject: [PATCH] fixed land/lor/lxor fasmg --> gas conversion --- src/crt/and.src | 3 ++- src/crt/or.src | 3 ++- src/crt/xor.src | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/crt/and.src b/src/crt/and.src index 47b968b18..a6bb60007 100644 --- a/src/crt/and.src +++ b/src/crt/and.src @@ -17,7 +17,8 @@ __land: push af and a, e ld e, a - jr .L.hijack_land + ; jr .L.hijack_land + .db 0x3E ; ld a, * __iand: ; CC: 24*r(PC)+11*r(SPL)+10*w(SPL)+1 push af diff --git a/src/crt/or.src b/src/crt/or.src index 86f3cd5e4..a9eb19acb 100644 --- a/src/crt/or.src +++ b/src/crt/or.src @@ -18,7 +18,8 @@ __lor: push af or a, e ld e, a - jr .L.hijack_lor + ; jr .L.hijack_lor + .db 0x3E ; ld a, * __ior: ; CC: 24*r(PC)+11*r(SPL)+10*w(SPL)+1 push af diff --git a/src/crt/xor.src b/src/crt/xor.src index 36e46c570..00d86b15b 100644 --- a/src/crt/xor.src +++ b/src/crt/xor.src @@ -18,7 +18,8 @@ __lxor: push af xor a, e ld e, a - jr .L.hijack_lxor + ; jr .L.hijack_lxor + .db 0x3E ; ld a, * __ixor: ; CC: 24*r(PC)+11*r(SPL)+10*w(SPL)+1 push af