html5-img
1 / 9

But first lab 4!

But first lab 4!. You will implement part of a FAT filesystem MSDOS *msdos_open(const char *devname) void msdos_close(MSDOS *dosp) int msdos_ls(MSDOS *dosp); int msdos_cd(MSDOS *dosp, const char *name); int msdos_rm(MSDOS *dosp, const char *name);

cleta
Télécharger la présentation

But first lab 4!

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. But first lab 4! • You will implement part of a FAT filesystem • MSDOS *msdos_open(const char *devname) • void msdos_close(MSDOS *dosp) • int msdos_ls(MSDOS *dosp); • int msdos_cd(MSDOS *dosp, const char *name); • int msdos_rm(MSDOS *dosp, const char *name); • int msdos_save(MSDOS *dosp, const char *name); Computing Systems http://www.cs.caltech.edu/courses/cs134/a/ September 6, 2014

  2. FAT filesystem structure Computing Systems http://www.cs.caltech.edu/courses/cs134/a/ September 6, 2014

  3. Boot sector Computing Systems http://www.cs.caltech.edu/courses/cs134/a/ September 6, 2014

  4. FAT tables Computing Systems http://www.cs.caltech.edu/courses/cs134/a/ September 6, 2014

  5. First FAT entry • First entry is reserved Computing Systems http://www.cs.caltech.edu/courses/cs134/a/ September 6, 2014

  6. Other FAT entries Computing Systems http://www.cs.caltech.edu/courses/cs134/a/ September 6, 2014

  7. FAT12 packing Computing Systems http://www.cs.caltech.edu/courses/cs134/a/ September 6, 2014

  8. Directory Entry Computing Systems http://www.cs.caltech.edu/courses/cs134/a/ September 6, 2014

  9. Entry Attributes Computing Systems http://www.cs.caltech.edu/courses/cs134/a/ September 6, 2014

More Related