mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 02:05:13 +00:00
4f26650228
* add syschdir * revert read.s * remove extra line * Now we update __cwd * Fix tab * Fix another tab * Fix tab * Fix tab and jmp * fix xgetcwd * Fix comments
28 lines
416 B
ArmAsm
28 lines
416 B
ArmAsm
;
|
|
; Jede (jede@oric.org) 24.09.2017
|
|
;
|
|
|
|
.export initcwd
|
|
.import __cwd
|
|
|
|
.include "zeropage.inc"
|
|
.include "telestrat.inc"
|
|
|
|
|
|
initcwd:
|
|
BRK_TELEMON(XGETCWD)
|
|
|
|
sta ptr1
|
|
sty ptr1+1
|
|
|
|
ldy #$00
|
|
loop:
|
|
lda (ptr1),y
|
|
sta __cwd,y
|
|
beq done
|
|
iny
|
|
bne loop
|
|
|
|
done:
|
|
rts
|