├── Credits ├── Bin │ ├── Credits.bin │ ├── Credits.dol │ ├── Credits.elf │ └── Credits.map ├── boot.s ├── debug.c ├── first.lds ├── make.bat ├── old_unused │ ├── gcc-ppcopt.rtf │ └── old │ │ ├── boot.s │ │ ├── debug.c │ │ ├── debug.dol │ │ ├── debug.elf │ │ ├── debug2.dol │ │ ├── first.lds │ │ ├── make.bat │ │ └── ray.c ├── ray.c └── ray.h ├── Drivecode ├── Source │ ├── MN10200.h │ ├── PPC.h │ ├── QLite Main.asm.c │ ├── QLite.h │ ├── QLiteApploader.asm.c │ ├── QLiteBreakpoints.asm.c │ ├── QLiteDbg.asm.c │ ├── QLiteIPL.asm.c │ ├── QLiteIPLDbg.asm.c │ ├── QliteGlobal.h │ ├── old_unused │ │ └── 1.03a │ │ │ ├── MN10200.h │ │ │ ├── PPC.h │ │ │ ├── QLite Main.asm.c │ │ │ ├── QLite.h │ │ │ ├── QLiteBreakpoints.asm.c │ │ │ ├── QLiteDbg.asm.c │ │ │ ├── QLiteIPL.asm.c │ │ │ ├── QLiteIPLDbg.asm.c │ │ │ ├── QliteGlobal.h │ │ │ ├── XenoAT.bin │ │ │ ├── XenoAT.hex │ │ │ └── xdump.asm.c │ └── xdump.asm.c ├── bin │ ├── Credits.dol │ ├── Disasm │ │ ├── IPLBoot.bin │ │ ├── QLiteApploader.bin │ │ ├── disasm1.bat │ │ ├── disasm1.cmd │ │ ├── disasm2.bat │ │ ├── disasm2.cmd │ │ ├── disasm3.bat │ │ ├── disasm3.cmd │ │ ├── qcode.bin │ │ └── qcode.bin.txt │ ├── IPLBoot.bin │ ├── IPLBoot.elf │ ├── QLiteApploader.bin │ ├── QLiteApploader.dol │ ├── QLiteApploader.elf │ ├── disasm.bat │ └── qcode.bin.txt └── make.bat ├── DvdTest ├── Bin │ ├── 2dol_8130.txt │ ├── 2dol_8170.txt │ ├── DvdTest.bin │ ├── DvdTest.dol │ ├── DvdTest.elf │ ├── DvdTest.map │ ├── README.TXT │ ├── SDLOADER.BIN │ ├── SDloadLoader.dol.bak │ ├── disasm.bat │ ├── dvdtest.bin.dec.gcb │ ├── gcos.dol.lnk │ ├── go.bat │ ├── iplkey.xor │ └── stacktest.rtf ├── Drivecode.s ├── Flash.cpp ├── GCOS 1.5.patched.dol ├── GCOS_Boot.dol ├── Makefile ├── XenoGC 1.03.bin ├── XenoShell.bin ├── buttons.txt ├── card.h ├── credits.bin ├── gcos.dol ├── gctypes.h ├── main.cpp ├── make.bat ├── old_unused │ ├── main.bak │ ├── makefile.bat │ ├── mkgcos.bat │ └── old │ │ ├── main.bak │ │ ├── main.c │ │ ├── mainX.c │ │ ├── mainbak1.c │ │ └── mainbak2.c ├── qcode.bin ├── qoobDump.dol ├── sdload.dol └── xdump.cpp ├── Makefile ├── Makefile-avrdude ├── Makefile-help ├── README.md ├── XenoAT.hex ├── XenoAT ├── Bin │ ├── XenoAT.1.03.v1.bin │ ├── XenoAT.1.03.v1.hex │ ├── XenoAT.1.03a.v1.bin │ ├── XenoAT.1.03a.v1.hex │ ├── XenoAT.1.03a.v2.bin │ ├── XenoAT.1.03a.v2.hex │ ├── XenoAT.bin │ ├── XenoAT.hex │ ├── XenoGC 1.01.V1.bin │ ├── XenoGC 1.01.V1.hex │ ├── XenoGC 1.01.V2.bin │ ├── XenoGC 1.01.V2.hex │ └── XenoGC 1.04.hex ├── Makefile-LINUX ├── Makefile-WIN ├── XenoAT.hex ├── old_unused │ ├── Bin │ │ ├── XenoAT.1.03.v1.bin │ │ ├── XenoAT.1.03.v1.hex │ │ ├── XenoAT.1.03a.v2.bin │ │ ├── XenoAT.1.03a.v2.hex │ │ ├── XenoGC 1.01.V1.bin │ │ └── XenoGC 1.01.V1.hex │ ├── XenoAT.map │ ├── mkupload.bat │ ├── upload.bin.txt │ └── xxdump.c └── source │ ├── NoCredits.bin │ ├── XenoAT.c │ ├── credits.bin │ ├── qCode.h │ ├── qcode.S │ ├── qcode.bin │ ├── sdload.bin │ ├── upload.S │ └── upload.bin ├── XenoFlash.dol ├── XenoFlash ├── Makefile ├── XenoFlash.dol ├── XenoFlash.elf ├── data │ ├── XenoAT.bin │ ├── confirmed_working_bins │ │ ├── XenoAT.1.03a.v1.bin │ │ └── XenoGC 1.01.V2.bin │ └── flashloader.bin ├── flashloader │ ├── Makefile │ ├── QLite.h │ ├── QliteGlobal.h │ ├── flashloader.S │ └── mn10200.h └── source │ ├── dvd.c │ ├── dvd.h │ ├── main.cpp │ ├── old_unused │ ├── Makefile-gekko │ └── first.lds │ ├── title.bmp │ └── title_bmp.h ├── XenoGlobal.h ├── XenoShell ├── Makefile-LINUX ├── Makefile-WIN ├── XenoShell.bin ├── old_unused │ └── xxdump.c └── source │ ├── boot.s │ ├── first.lds │ ├── main.c │ └── main.h ├── software_installer_switch.jpg └── xenogc_ISP_solder_points.png /Credits/Bin/Credits.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/Bin/Credits.bin -------------------------------------------------------------------------------- /Credits/Bin/Credits.dol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/Bin/Credits.dol -------------------------------------------------------------------------------- /Credits/Bin/Credits.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/Bin/Credits.elf -------------------------------------------------------------------------------- /Credits/Bin/Credits.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/Bin/Credits.map -------------------------------------------------------------------------------- /Credits/boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/boot.s -------------------------------------------------------------------------------- /Credits/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/debug.c -------------------------------------------------------------------------------- /Credits/first.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/first.lds -------------------------------------------------------------------------------- /Credits/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/make.bat -------------------------------------------------------------------------------- /Credits/old_unused/gcc-ppcopt.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/old_unused/gcc-ppcopt.rtf -------------------------------------------------------------------------------- /Credits/old_unused/old/boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/old_unused/old/boot.s -------------------------------------------------------------------------------- /Credits/old_unused/old/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/old_unused/old/debug.c -------------------------------------------------------------------------------- /Credits/old_unused/old/debug.dol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/old_unused/old/debug.dol -------------------------------------------------------------------------------- /Credits/old_unused/old/debug.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/old_unused/old/debug.elf -------------------------------------------------------------------------------- /Credits/old_unused/old/debug2.dol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/old_unused/old/debug2.dol -------------------------------------------------------------------------------- /Credits/old_unused/old/first.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/old_unused/old/first.lds -------------------------------------------------------------------------------- /Credits/old_unused/old/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/old_unused/old/make.bat -------------------------------------------------------------------------------- /Credits/old_unused/old/ray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/old_unused/old/ray.c -------------------------------------------------------------------------------- /Credits/ray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/ray.c -------------------------------------------------------------------------------- /Credits/ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Credits/ray.h -------------------------------------------------------------------------------- /Drivecode/Source/MN10200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/MN10200.h -------------------------------------------------------------------------------- /Drivecode/Source/PPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/PPC.h -------------------------------------------------------------------------------- /Drivecode/Source/QLite Main.asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/QLite Main.asm.c -------------------------------------------------------------------------------- /Drivecode/Source/QLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/QLite.h -------------------------------------------------------------------------------- /Drivecode/Source/QLiteApploader.asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/QLiteApploader.asm.c -------------------------------------------------------------------------------- /Drivecode/Source/QLiteBreakpoints.asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/QLiteBreakpoints.asm.c -------------------------------------------------------------------------------- /Drivecode/Source/QLiteDbg.asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/QLiteDbg.asm.c -------------------------------------------------------------------------------- /Drivecode/Source/QLiteIPL.asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/QLiteIPL.asm.c -------------------------------------------------------------------------------- /Drivecode/Source/QLiteIPLDbg.asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/QLiteIPLDbg.asm.c -------------------------------------------------------------------------------- /Drivecode/Source/QliteGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/QliteGlobal.h -------------------------------------------------------------------------------- /Drivecode/Source/old_unused/1.03a/MN10200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/old_unused/1.03a/MN10200.h -------------------------------------------------------------------------------- /Drivecode/Source/old_unused/1.03a/PPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/old_unused/1.03a/PPC.h -------------------------------------------------------------------------------- /Drivecode/Source/old_unused/1.03a/QLite Main.asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/old_unused/1.03a/QLite Main.asm.c -------------------------------------------------------------------------------- /Drivecode/Source/old_unused/1.03a/QLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/old_unused/1.03a/QLite.h -------------------------------------------------------------------------------- /Drivecode/Source/old_unused/1.03a/QLiteBreakpoints.asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/old_unused/1.03a/QLiteBreakpoints.asm.c -------------------------------------------------------------------------------- /Drivecode/Source/old_unused/1.03a/QLiteDbg.asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/old_unused/1.03a/QLiteDbg.asm.c -------------------------------------------------------------------------------- /Drivecode/Source/old_unused/1.03a/QLiteIPL.asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/old_unused/1.03a/QLiteIPL.asm.c -------------------------------------------------------------------------------- /Drivecode/Source/old_unused/1.03a/QLiteIPLDbg.asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/old_unused/1.03a/QLiteIPLDbg.asm.c -------------------------------------------------------------------------------- /Drivecode/Source/old_unused/1.03a/QliteGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/old_unused/1.03a/QliteGlobal.h -------------------------------------------------------------------------------- /Drivecode/Source/old_unused/1.03a/XenoAT.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/old_unused/1.03a/XenoAT.bin -------------------------------------------------------------------------------- /Drivecode/Source/old_unused/1.03a/XenoAT.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/old_unused/1.03a/XenoAT.hex -------------------------------------------------------------------------------- /Drivecode/Source/old_unused/1.03a/xdump.asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/old_unused/1.03a/xdump.asm.c -------------------------------------------------------------------------------- /Drivecode/Source/xdump.asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/Source/xdump.asm.c -------------------------------------------------------------------------------- /Drivecode/bin/Credits.dol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/bin/Credits.dol -------------------------------------------------------------------------------- /Drivecode/bin/Disasm/IPLBoot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/bin/Disasm/IPLBoot.bin -------------------------------------------------------------------------------- /Drivecode/bin/Disasm/QLiteApploader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingt-2/xenogcfork/HEAD/Drivecode/bin/Disasm/QLiteApploader.bin -------------------------------------------------------------------------------- /Drivecode/bin/Disasm/disasm1.bat: -------------------------------------------------------------------------------- 1 | @call delfile qcode_lo.bin.txt 2 | dis10200