exec_from_file and vfs: fix reading file

This commit is contained in:
2025-08-17 15:02:09 +03:00
parent 0628470a7c
commit caa4005990
3 changed files with 20 additions and 26 deletions
+1 -1
View File
@@ -11,6 +11,6 @@ bool read_sector_callback(l9660_fs *fs, void *buf, uint32_t sector);
void mount_fs();
void list_files(l9660_dir *dir);
size_t vfs_read_file(l9660_file *file, uint8_t* buffer, size_t final_size);
size_t vfs_read_file(l9660_file *file, uint8_t* buffer);
#endif