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