fat_io_lib port WIP
All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m12s

This commit is contained in:
2026-02-26 23:33:03 +01:00
parent 9758d79303
commit baa13fb695
15 changed files with 3607 additions and 18 deletions

View File

@@ -18,6 +18,8 @@
#define VFS_KERNEL ((struct proc*)0x123)
#define VFS_TARFS 0
#define VFS_FAT16 1
#define VFS_FAT32 2
struct vfs_volume;
@@ -66,4 +68,7 @@ int vfs_read_dir_entry (struct proc* proc, const char* volume, const char* path,
void vfs_init (void);
void vfs_translate (size_t fs_block, size_t fs_block_count, size_t fs_block_size,
size_t device_sector_size, size_t* out_phys_sector, size_t* out_sector_count);
#endif // _KERNEL_FS_VFS_H