mirror of
https://github.com/cc65/cc65.git
synced 2025-04-04 21:33:30 +00:00
Shrank Telestrat initcwd.s by 3 bytes.
Changing when a loop test is done allowed the removal of an extra STA instruction.
This commit is contained in:
parent
1ea5889a87
commit
da22c90d33
@ -10,22 +10,19 @@
|
||||
|
||||
|
||||
initcwd:
|
||||
|
||||
ldx #PWD_PTR
|
||||
BRK_TELEMON XVARS
|
||||
|
||||
|
||||
sta ptr1
|
||||
sty ptr1+1
|
||||
|
||||
|
||||
ldy #$00
|
||||
|
||||
loop:
|
||||
loop:
|
||||
lda (ptr1),y
|
||||
beq done
|
||||
sta __cwd,y
|
||||
beq done
|
||||
iny
|
||||
bne loop
|
||||
|
||||
done:
|
||||
sta __cwd,y
|
||||
|
||||
done:
|
||||
rts
|
||||
|
Loading…
x
Reference in New Issue
Block a user