├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── COPYING ├── HISTORY.md ├── Makefile ├── README.md ├── romdir.c ├── romdir.h └── romdirfs.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | *.img 3 | *.o 4 | build/ 5 | romdirfs 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/romdirfs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/romdirfs/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/romdirfs/HEAD/COPYING -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/romdirfs/HEAD/HISTORY.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/romdirfs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/romdirfs/HEAD/README.md -------------------------------------------------------------------------------- /romdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/romdirfs/HEAD/romdir.c -------------------------------------------------------------------------------- /romdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/romdirfs/HEAD/romdir.h -------------------------------------------------------------------------------- /romdirfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/romdirfs/HEAD/romdirfs.c --------------------------------------------------------------------------------