├── README.md ├── disk_emu.c ├── disk_emu.h ├── img ├── fig1.png └── fig2.png ├── sfs_api.h ├── sfs_header.h ├── sfs_test.c ├── sfs_util.h └── test.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadesalaberry/SimpleFS/HEAD/README.md -------------------------------------------------------------------------------- /disk_emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadesalaberry/SimpleFS/HEAD/disk_emu.c -------------------------------------------------------------------------------- /disk_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadesalaberry/SimpleFS/HEAD/disk_emu.h -------------------------------------------------------------------------------- /img/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadesalaberry/SimpleFS/HEAD/img/fig1.png -------------------------------------------------------------------------------- /img/fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadesalaberry/SimpleFS/HEAD/img/fig2.png -------------------------------------------------------------------------------- /sfs_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadesalaberry/SimpleFS/HEAD/sfs_api.h -------------------------------------------------------------------------------- /sfs_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadesalaberry/SimpleFS/HEAD/sfs_header.h -------------------------------------------------------------------------------- /sfs_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadesalaberry/SimpleFS/HEAD/sfs_test.c -------------------------------------------------------------------------------- /sfs_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadesalaberry/SimpleFS/HEAD/sfs_util.h -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadesalaberry/SimpleFS/HEAD/test.sh --------------------------------------------------------------------------------