1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-29 09:40:56 +10:00

fs: fix broken fopn on id > 0

This commit is contained in:
Virgil Dupras 2019-06-05 15:40:56 -04:00
parent a7ce9f6fc6
commit 2483ee699d
2 changed files with 10 additions and 1 deletions

View File

@ -461,6 +461,7 @@ fsGetC:
; Write byte A in handle (IX) and advance the handle's position.
; Z is set on success, unset if handle is at the end of the file.
; TODO: detect end of block alloc
; TODO: grow file size if appropriate
fsPutC:
push hl
call fsPlaceH

View File

@ -71,7 +71,15 @@ fopnCmd:
push de
ld a, (hl) ; file handle index
ld de, FS_HANDLES
call addDE ; DE now stores pointer to file handle
or a ; cp 0
jr z, .noInc ; DE already point to correct handle
ld b, a
.loop:
ld a, FS_HANDLE_SIZE
call addDE
djnz .loop
.noInc:
; DE now stores pointer to file handle
inc hl
call intoHL ; HL now holds the string we look for
call fsFindFN