We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4aa7c51 commit 5b94151Copy full SHA for 5b94151
src/fatdrvce/fatdrvce.asm
@@ -2359,11 +2359,19 @@ util_fat_read_write:
2359
push de
2360
pop bc
2361
ld de,(iy + 9)
2362
+ push bc
2363
push iy
2364
ld iy,(xfatFile.fat)
2365
call util_read_fat_multiple_blocks
2366
.block_func := $-3
2367
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
2375
ret
2376
.getnextcluster:
2377
ld hl,(xfatFile.block_index)
0 commit comments