2000-05-28 13:40:48 +00:00
|
|
|
;
|
2020-10-29 17:54:56 -04:00
|
|
|
; 1999-10-26, Maciej 'YTM/Alliance' Witkowiak
|
|
|
|
; 2020-10-29, Greg King
|
2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
; struct filehandle* Get1stDirEntry (void);
|
|
|
|
|
2022-08-28 21:52:53 +02:00
|
|
|
.import ___oserror, return0
|
2013-05-09 13:56:54 +02:00
|
|
|
.export _Get1stDirEntry
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.include "diskdrv.inc"
|
|
|
|
.include "geossym.inc"
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
_Get1stDirEntry:
|
2013-05-09 13:56:54 +02:00
|
|
|
jsr Get1stDirEntry
|
2022-08-28 21:52:53 +02:00
|
|
|
stx ___oserror
|
2020-10-29 17:42:36 +01:00
|
|
|
txa
|
2020-10-29 17:54:56 -04:00
|
|
|
bne L1 ; jump if disk error
|
|
|
|
lda r5L
|
2013-05-09 13:56:54 +02:00
|
|
|
ldx r5H
|
|
|
|
rts
|
2020-10-29 17:54:56 -04:00
|
|
|
|
|
|
|
L1: jmp return0 ; return NULL if not valid entry
|