[FEATURE UPDATE]
I changed out the memory based fat32 filesystem for one that runs on a 512mb disk img made during the make command (only get's made if the disk.img file is nonexistent) allowing files to be permanent.

Also all these files combined are 67 files.. just fyi.
This commit is contained in:
Chris
2026-02-07 01:29:54 +01:00
parent d2e7808cfa
commit cc0db5de9d
67 changed files with 1057 additions and 354 deletions

View File

@@ -83,6 +83,8 @@ typedef struct {
uint32_t size; // File size
uint32_t mode; // 0=read, 1=write, 2=append
bool valid; // Is this handle valid?
uint32_t dir_sector; // Sector containing the directory entry
uint32_t dir_offset; // Offset within that sector
} FAT32_FileHandle;
// Directory Entry Info (for listing)