From 44ac08950a32e3aa7c5430f20ff35420d7c270e2 Mon Sep 17 00:00:00 2001 From: hugova Date: Tue, 15 Jul 2025 22:23:49 +0200 Subject: [PATCH] fix wrong implementation of ! flag --- wip-hugo/macros/16aritmatic.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wip-hugo/macros/16aritmatic.s b/wip-hugo/macros/16aritmatic.s index 0f41cc9..62184b0 100755 --- a/wip-hugo/macros/16aritmatic.s +++ b/wip-hugo/macros/16aritmatic.s @@ -101,10 +101,10 @@ .macro Mult_16 low_, hi_, NOT_ROL ;; IF NOT_ROL .ifblank fast_unsafe - ASL low_ + ROL low_ ROL hi_ .else - ROL low_ + ASL low_ ROL hi_ .endif .endmacro