├── .gitignore ├── README-gdmenu.txt ├── README.md ├── data ├── 1ST_READ.BIN └── ip.bin ├── dc-card-maker.sh ├── ini └── GDEMU.ini ├── licenses ├── LICENSE-dc-card-maker-script ├── LICENSE-gditools └── LICENSE-iso9660 └── tools ├── gditools.py └── iso9660.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstolarek/dc-card-maker-script/HEAD/.gitignore -------------------------------------------------------------------------------- /README-gdmenu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstolarek/dc-card-maker-script/HEAD/README-gdmenu.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstolarek/dc-card-maker-script/HEAD/README.md -------------------------------------------------------------------------------- /data/1ST_READ.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstolarek/dc-card-maker-script/HEAD/data/1ST_READ.BIN -------------------------------------------------------------------------------- /data/ip.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstolarek/dc-card-maker-script/HEAD/data/ip.bin -------------------------------------------------------------------------------- /dc-card-maker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstolarek/dc-card-maker-script/HEAD/dc-card-maker.sh -------------------------------------------------------------------------------- /ini/GDEMU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstolarek/dc-card-maker-script/HEAD/ini/GDEMU.ini -------------------------------------------------------------------------------- /licenses/LICENSE-dc-card-maker-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstolarek/dc-card-maker-script/HEAD/licenses/LICENSE-dc-card-maker-script -------------------------------------------------------------------------------- /licenses/LICENSE-gditools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstolarek/dc-card-maker-script/HEAD/licenses/LICENSE-gditools -------------------------------------------------------------------------------- /licenses/LICENSE-iso9660: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstolarek/dc-card-maker-script/HEAD/licenses/LICENSE-iso9660 -------------------------------------------------------------------------------- /tools/gditools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstolarek/dc-card-maker-script/HEAD/tools/gditools.py -------------------------------------------------------------------------------- /tools/iso9660.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstolarek/dc-card-maker-script/HEAD/tools/iso9660.py --------------------------------------------------------------------------------