mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 02:05:13 +00:00
20 lines
268 B
ArmAsm
20 lines
268 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Alliance' Witkowiak
|
||
|
;
|
||
|
; 26.10.99
|
||
|
|
||
|
; struct filehandle* GetNxtDirEntry (void);
|
||
|
|
||
|
.export _GetNxtDirEntry
|
||
|
|
||
|
.include "../inc/diskdrv.inc"
|
||
|
.include "../inc/geossym.inc"
|
||
|
|
||
|
_GetNxtDirEntry:
|
||
|
jsr GetNxtDirEntry
|
||
|
stx errno
|
||
|
lda r5L
|
||
|
ldx r5H
|
||
|
rts
|