From 72a9f7060f6ca254a627a5e36cd89f8d15eba5d9 Mon Sep 17 00:00:00 2001 From: hugova Date: Tue, 15 Jul 2025 21:17:04 +0200 Subject: [PATCH] removed unessesary instructions in memset.s --- wip-hugo/routines/memory/memset.s | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wip-hugo/routines/memory/memset.s b/wip-hugo/routines/memory/memset.s index a0f0bac..55700e9 100755 --- a/wip-hugo/routines/memory/memset.s +++ b/wip-hugo/routines/memory/memset.s @@ -11,9 +11,8 @@ LDX length +1 BNE big_set JMP small_set -LDX length + 1 big_set: ;sets $ff of memory - LDY #$ff + ;; Y value do not matter, will go through all anyway! .repeat $ff STA (A_start), Y DEY