Skip to content

Commit 5b94151

Browse files
fix fatdrvce multiple block read
1 parent 4aa7c51 commit 5b94151

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/fatdrvce/fatdrvce.asm

+8
Original file line numberDiff line numberDiff line change
@@ -2359,11 +2359,19 @@ util_fat_read_write:
23592359
push de
23602360
pop bc
23612361
ld de,(iy + 9)
2362+
push bc
23622363
push iy
23632364
ld iy,(xfatFile.fat)
23642365
call util_read_fat_multiple_blocks
23652366
.block_func := $-3
23662367
pop iy
2368+
pop hl
2369+
ld h,l
2370+
ld l,0
2371+
add hl,hl ; mutiply by 512
2372+
ld bc,(iy + 9)
2373+
add hl,bc
2374+
ld (iy + 9),hl
23672375
ret
23682376
.getnextcluster:
23692377
ld hl,(xfatFile.block_index)

0 commit comments

Comments
 (0)