mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 17:30:50 +00:00
13 lines
154 B
ArmAsm
13 lines
154 B
ArmAsm
|
.export store_filename
|
||
|
.importzp ptr1
|
||
|
|
||
|
store_filename:
|
||
|
sta ptr1
|
||
|
stx ptr1+1
|
||
|
ldy #$0f ;store filename
|
||
|
: lda (ptr1),y
|
||
|
sta $027f,y
|
||
|
dey
|
||
|
bpl :-
|
||
|
rts
|