Look through files without trying too hard

This commit is contained in:
Byron Lathi
2023-12-05 08:08:20 -08:00
parent 2859055f98
commit 946234381d
4 changed files with 32 additions and 8 deletions

View File

@@ -6,6 +6,6 @@ void fat32_init(void);
int main(void) {
struct fat32_directory_entry dentry;
fat32_init();
fat32_get_cluster_by_name("KERNEL O65", &dentry);
fat32_get_cluster_by_name("TEST TXT", &dentry);
return 0;
}