brfs.c 369 B

123456789101112
  1. /**
  2. * User library for file system operations
  3. */
  4. struct brfs_dir_entry
  5. {
  6. word filename[4]; // 4 chars per word
  7. word modify_date; // TBD when RTC added to FPGC
  8. word flags; // 32 flags, from right to left: directory, hidden
  9. word fat_idx; // idx of first FAT block
  10. word filesize; // file size in words, not bytes
  11. };