mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
da22c90d33
Changing when a loop test is done allowed the removal of an extra STA instruction.
29 lines
438 B
ArmAsm
29 lines
438 B
ArmAsm
;
|
|
; Jede (jede@oric.org) 24.09.2017
|
|
;
|
|
|
|
.export initcwd
|
|
.import __cwd
|
|
|
|
.include "zeropage.inc"
|
|
.include "telestrat.inc"
|
|
|
|
|
|
initcwd:
|
|
ldx #PWD_PTR
|
|
BRK_TELEMON XVARS
|
|
|
|
sta ptr1
|
|
sty ptr1+1
|
|
|
|
ldy #$00
|
|
loop:
|
|
lda (ptr1),y
|
|
sta __cwd,y
|
|
beq done
|
|
iny
|
|
bne loop
|
|
|
|
done:
|
|
rts
|