removed unessesary instructions in memset.s

This commit is contained in:
hugova 2025-07-15 21:17:04 +02:00
parent 7e0dbb791e
commit 72a9f7060f

View file

@ -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