Skip to content

Commit eff7d7c

Browse files
committed
fix: add missing chdir entry in FAT32 jump tables
The dir_chdir entry was missing from both the fat namespace virtual table (f256/fat32.asm) and the f256jr jump table (fat32/f256jr.s), causing a build failure.
1 parent f2f391f commit eff7d7c

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

f256/fat32.asm

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ dir_close .fill 3
5252

5353
dir_mkdir .fill 3
5454
dir_rmdir .fill 3
55+
56+
dir_chdir .fill 3
5557
.endn
5658
.endv
5759

fat32/f256jr.s

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ used: .res 1
6060
jmp fat32_mkdir
6161
jmp fat32_rmdir
6262

63+
jmp fat32_chdir
64+
6365
get_error:
6466
lda fat32_errno
6567
rts

0 commit comments

Comments
 (0)