├── .gitignore ├── 2CDT ├── 2cdt.cbp ├── 2cdt.depend ├── 2cdt.layout ├── COPYING ├── Makefile ├── Makefile.win ├── file_id.diz ├── readme.txt └── src │ ├── 2cdt.c │ ├── defs.h │ ├── tzxfile.c │ └── tzxfile.h ├── Makefile ├── README.md ├── dump-pal.py ├── example ├── README.md ├── loader.bas ├── loading.png ├── master.cdt └── master.dsk ├── gfx2crtc ├── AUTHORS ├── LICENCE ├── LICENSE ├── README ├── TODO ├── libraw2crtc.c ├── libraw2crtc.h ├── makefile ├── png2crtc.c └── raw2crtc.c ├── iDSK ├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── README.md └── src │ ├── Ascii.cpp │ ├── Ascii.h │ ├── Basic.cpp │ ├── Basic.h │ ├── BitmapCPC.cpp │ ├── BitmapCPC.h │ ├── Dams.cpp │ ├── Dams.h │ ├── Desass.cpp │ ├── Desass.h │ ├── GestDsk.cpp │ ├── GestDsk.h │ ├── Main.cpp │ ├── Main.h │ ├── MyType.h │ ├── Outils.cpp │ ├── Outils.h │ ├── ViewFile.cpp │ ├── ViewFile.h │ ├── endianPPC.cpp │ ├── endianPPC.h │ ├── getopt_pp.cpp │ └── getopt_pp.h └── loader.bas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/.gitignore -------------------------------------------------------------------------------- /2CDT/2cdt.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/2CDT/2cdt.cbp -------------------------------------------------------------------------------- /2CDT/2cdt.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/2CDT/2cdt.depend -------------------------------------------------------------------------------- /2CDT/2cdt.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/2CDT/2cdt.layout -------------------------------------------------------------------------------- /2CDT/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/2CDT/COPYING -------------------------------------------------------------------------------- /2CDT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/2CDT/Makefile -------------------------------------------------------------------------------- /2CDT/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/2CDT/Makefile.win -------------------------------------------------------------------------------- /2CDT/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/2CDT/file_id.diz -------------------------------------------------------------------------------- /2CDT/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/2CDT/readme.txt -------------------------------------------------------------------------------- /2CDT/src/2cdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/2CDT/src/2cdt.c -------------------------------------------------------------------------------- /2CDT/src/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/2CDT/src/defs.h -------------------------------------------------------------------------------- /2CDT/src/tzxfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/2CDT/src/tzxfile.c -------------------------------------------------------------------------------- /2CDT/src/tzxfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/2CDT/src/tzxfile.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/README.md -------------------------------------------------------------------------------- /dump-pal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/dump-pal.py -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/example/README.md -------------------------------------------------------------------------------- /example/loader.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/example/loader.bas -------------------------------------------------------------------------------- /example/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/example/loading.png -------------------------------------------------------------------------------- /example/master.cdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/example/master.cdt -------------------------------------------------------------------------------- /example/master.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/example/master.dsk -------------------------------------------------------------------------------- /gfx2crtc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/gfx2crtc/AUTHORS -------------------------------------------------------------------------------- /gfx2crtc/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/gfx2crtc/LICENCE -------------------------------------------------------------------------------- /gfx2crtc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/gfx2crtc/LICENSE -------------------------------------------------------------------------------- /gfx2crtc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/gfx2crtc/README -------------------------------------------------------------------------------- /gfx2crtc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/gfx2crtc/TODO -------------------------------------------------------------------------------- /gfx2crtc/libraw2crtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/gfx2crtc/libraw2crtc.c -------------------------------------------------------------------------------- /gfx2crtc/libraw2crtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/gfx2crtc/libraw2crtc.h -------------------------------------------------------------------------------- /gfx2crtc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/gfx2crtc/makefile -------------------------------------------------------------------------------- /gfx2crtc/png2crtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/gfx2crtc/png2crtc.c -------------------------------------------------------------------------------- /gfx2crtc/raw2crtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/gfx2crtc/raw2crtc.c -------------------------------------------------------------------------------- /iDSK/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/.gitignore -------------------------------------------------------------------------------- /iDSK/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/AUTHORS -------------------------------------------------------------------------------- /iDSK/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/CMakeLists.txt -------------------------------------------------------------------------------- /iDSK/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/COPYING -------------------------------------------------------------------------------- /iDSK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/README.md -------------------------------------------------------------------------------- /iDSK/src/Ascii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/Ascii.cpp -------------------------------------------------------------------------------- /iDSK/src/Ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/Ascii.h -------------------------------------------------------------------------------- /iDSK/src/Basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/Basic.cpp -------------------------------------------------------------------------------- /iDSK/src/Basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/Basic.h -------------------------------------------------------------------------------- /iDSK/src/BitmapCPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/BitmapCPC.cpp -------------------------------------------------------------------------------- /iDSK/src/BitmapCPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/BitmapCPC.h -------------------------------------------------------------------------------- /iDSK/src/Dams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/Dams.cpp -------------------------------------------------------------------------------- /iDSK/src/Dams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/Dams.h -------------------------------------------------------------------------------- /iDSK/src/Desass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/Desass.cpp -------------------------------------------------------------------------------- /iDSK/src/Desass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/Desass.h -------------------------------------------------------------------------------- /iDSK/src/GestDsk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/GestDsk.cpp -------------------------------------------------------------------------------- /iDSK/src/GestDsk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/GestDsk.h -------------------------------------------------------------------------------- /iDSK/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/Main.cpp -------------------------------------------------------------------------------- /iDSK/src/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/Main.h -------------------------------------------------------------------------------- /iDSK/src/MyType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/MyType.h -------------------------------------------------------------------------------- /iDSK/src/Outils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/Outils.cpp -------------------------------------------------------------------------------- /iDSK/src/Outils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/Outils.h -------------------------------------------------------------------------------- /iDSK/src/ViewFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/ViewFile.cpp -------------------------------------------------------------------------------- /iDSK/src/ViewFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/ViewFile.h -------------------------------------------------------------------------------- /iDSK/src/endianPPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/endianPPC.cpp -------------------------------------------------------------------------------- /iDSK/src/endianPPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/endianPPC.h -------------------------------------------------------------------------------- /iDSK/src/getopt_pp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/getopt_pp.cpp -------------------------------------------------------------------------------- /iDSK/src/getopt_pp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/iDSK/src/getopt_pp.h -------------------------------------------------------------------------------- /loader.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reidrac/cpc-mastering/HEAD/loader.bas --------------------------------------------------------------------------------