1
0
mirror of https://github.com/cc65/cc65.git synced 2024-08-18 10:29:06 +00:00
cc65/libsrc/geos-common/file/getnxtdirentry.s
2020-10-29 17:44:19 +01:00

26 lines
510 B
ArmAsm

;
; Maciej 'YTM/Alliance' Witkowiak
;
; 26.10.99
; struct filehandle* GetNxtDirEntry (void);
.import __oserror, return0
.export _GetNxtDirEntry
.include "diskdrv.inc"
.include "geossym.inc"
_GetNxtDirEntry:
jsr GetNxtDirEntry
stx __oserror
txa
beq L0 ; error?
tya
beq L0 ; end of dir?
jmp return0 ; return NULL
L0: lda r5L
ldx r5H
rts