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