├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── feature-report.yml │ └── question-report.yml └── workflows │ └── continuous-integration-workflow.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── audio streaming notes.txt ├── cube ├── PowerPC.h ├── asm.h ├── linker-script │ └── ogc.ld ├── packer │ ├── Makefile │ └── source │ │ ├── crt0.S │ │ ├── link.ld │ │ ├── main.c │ │ └── xz │ │ ├── xz.h │ │ ├── xz_config.h │ │ ├── xz_crc32.c │ │ ├── xz_crc64.c │ │ ├── xz_dec_bcj.c │ │ ├── xz_dec_lzma2.c │ │ ├── xz_dec_stream.c │ │ ├── xz_lzma2.h │ │ ├── xz_private.h │ │ ├── xz_sha256.c │ │ └── xz_stream.h ├── patches │ ├── Makefile │ ├── base │ │ ├── DVDMath.c │ │ ├── DVDMath.h │ │ ├── audio.c │ │ ├── audio.h │ │ ├── base.S │ │ ├── base.ld │ │ ├── blockdevice.c │ │ ├── common.h │ │ ├── common.ld │ │ ├── dolphin │ │ │ ├── ar.h │ │ │ ├── dolformat.h │ │ │ ├── dvd.h │ │ │ ├── exi.h │ │ │ ├── os.c │ │ │ ├── os.h │ │ │ ├── os.ld │ │ │ └── pad.h │ │ ├── emulator.c │ │ ├── emulator.h │ │ ├── emulator_card.c │ │ ├── emulator_card.h │ │ ├── emulator_dvd.c │ │ ├── emulator_eth.c │ │ ├── emulator_eth.h │ │ ├── fifo.c │ │ ├── fifo.h │ │ ├── floor.S │ │ ├── frag.c │ │ ├── frag.h │ │ ├── interrupt.c │ │ ├── interrupt.h │ │ ├── ipl.c │ │ ├── ipl.h │ │ ├── memcpy.S │ │ ├── memmove.S │ │ ├── os.c │ │ ├── pad.c │ │ ├── setjmp.S │ │ └── sqrt.S │ ├── bba │ │ ├── bba.c │ │ ├── bba.h │ │ ├── enc28j60.c │ │ ├── enc28j60.h │ │ ├── tcpip.c │ │ ├── w5500.c │ │ ├── w5500.h │ │ ├── w6100.c │ │ ├── w6300.c │ │ └── w6x00.h │ ├── cheats │ │ ├── codehandler.ld │ │ ├── codehandler.s │ │ └── codehandleronly.s │ ├── dvd │ │ └── dvd.c │ ├── flippydrive │ │ └── flippy.c │ ├── gcloader │ │ └── gcloader.c │ ├── ide-exi │ │ ├── ata.c │ │ └── ata_isr.S │ ├── sdgecko │ │ ├── sd.c │ │ └── sd_isr.S │ ├── stub │ │ ├── asmfunc.S │ │ ├── crt0.S │ │ ├── diskio.h │ │ ├── eltorito.h │ │ ├── main.c │ │ ├── mmcbbp.c │ │ ├── pff.c │ │ ├── pff.h │ │ ├── pffconf.h │ │ └── stub.ld │ ├── usbgecko │ │ ├── uart.c │ │ ├── usbgecko.c │ │ ├── usbgecko_isr.S │ │ └── usbgecko_low.c │ └── wkf │ │ └── wkf.c ├── reservedarea.h ├── reservedarea.ld └── swiss │ ├── Makefile │ ├── include │ ├── bba.h │ ├── bnr.h │ ├── dvd.h │ ├── elf.h │ ├── elf_abi.h │ ├── eltorito.h │ ├── exi.h │ ├── files.h │ ├── gameid.h │ ├── gcm.h │ ├── httpd.h │ ├── input.h │ ├── main.h │ ├── mp3.h │ ├── nkit.h │ ├── patcher.h │ ├── rt4k.h │ ├── swiss.h │ ├── util.h │ ├── video.h │ └── wiiload.h │ ├── makeme.bat │ ├── readme.txt │ └── source │ ├── aram │ ├── sidestep.c │ ├── sidestep.h │ ├── ssaram.c │ └── ssaram.h │ ├── bba.c │ ├── cheats │ ├── cheats.c │ └── cheats.h │ ├── config │ ├── config.c │ ├── config.h │ ├── dolparameters.c │ ├── dolparameters.h │ ├── sram.c │ └── sram.h │ ├── devices │ ├── aram │ │ ├── aram.c │ │ ├── aram.h │ │ ├── deviceHandler-ARAM.c │ │ └── deviceHandler-ARAM.h │ ├── deviceHandler.c │ ├── deviceHandler.h │ ├── dvd │ │ ├── deviceHandler-DVD.c │ │ ├── deviceHandler-DVD.h │ │ ├── drivecodes.h │ │ └── dvd.c │ ├── fat │ │ ├── ata.c │ │ ├── ata.h │ │ ├── ataconf.h │ │ ├── deviceHandler-FAT.c │ │ └── deviceHandler-FAT.h │ ├── filelock.c │ ├── filelock.h │ ├── filemeta.c │ ├── filemeta.h │ ├── flippydrive │ │ ├── deviceHandler-flippydrive.c │ │ ├── deviceHandler-flippydrive.h │ │ ├── flippy.c │ │ └── flippy.h │ ├── fsp │ │ ├── deviceHandler-FSP.c │ │ ├── deviceHandler-FSP.h │ │ ├── fsplib.c │ │ ├── fsplib.h │ │ ├── lock.c │ │ └── lock.h │ ├── ftp │ │ ├── deviceHandler-FTP.c │ │ ├── deviceHandler-FTP.h │ │ ├── ftp_devoptab.c │ │ └── ftp_devoptab.h │ ├── gcloader │ │ ├── deviceHandler-gcloader.c │ │ ├── deviceHandler-gcloader.h │ │ ├── gcloader.c │ │ └── gcloader.h │ ├── kunaigc │ │ ├── deviceHandler-KunaiGC.c │ │ ├── deviceHandler-KunaiGC.h │ │ ├── kunaigc.c │ │ ├── kunaigc.h │ │ ├── spiflash.c │ │ └── spiflash.h │ ├── memcard │ │ ├── deviceHandler-CARD.c │ │ └── deviceHandler-CARD.h │ ├── qoob │ │ ├── deviceHandler-Qoob.c │ │ └── deviceHandler-Qoob.h │ ├── smb │ │ ├── deviceHandler-SMB.c │ │ └── deviceHandler-SMB.h │ ├── system │ │ ├── deviceHandler-SYS.c │ │ └── deviceHandler-SYS.h │ ├── usbgecko │ │ ├── deviceHandler-usbgecko.c │ │ ├── deviceHandler-usbgecko.h │ │ ├── usbgecko.c │ │ └── usbgecko.h │ ├── wiikeyfusion │ │ ├── deviceHandler-wiikeyfusion.c │ │ ├── deviceHandler-wiikeyfusion.h │ │ ├── wkf.c │ │ └── wkf.h │ └── wode │ │ ├── WodeInterface.h │ │ ├── deviceHandler-WODE.c │ │ ├── deviceHandler-WODE.h │ │ └── wode.c │ ├── elf.c │ ├── exi.c │ ├── fatfs │ ├── 00history.txt │ ├── 00readme.txt │ ├── diskio.c │ ├── diskio.h │ ├── ff.c │ ├── ff.h │ ├── ffconf.h │ ├── ffsystem.c │ └── ffunicode.c │ ├── files.c │ ├── gameid.c │ ├── gcm.c │ ├── gui │ ├── FrameBufferMagic.c │ ├── FrameBufferMagic.h │ ├── IPLFontWrite.c │ ├── IPLFontWrite.h │ ├── blankbanner.c │ ├── info.c │ ├── info.h │ ├── settings.c │ └── settings.h │ ├── httpd.c │ ├── images │ ├── DOL.psd │ ├── DOLcli.psd │ ├── backdrop.png │ ├── backdrop.psd │ ├── backdrop.tif │ ├── backdrop_ind.png │ ├── banner_mask.tif │ ├── bba.psd │ ├── bba.tif │ ├── buttons │ │ ├── boxinner.tif │ │ ├── boxouter.tif │ │ ├── btndevice.tif │ │ ├── btnexit.tif │ │ ├── btnhilight.tif │ │ ├── btninfo.tif │ │ ├── btnrefresh.tif │ │ ├── btns.h │ │ ├── btnsettings.tif │ │ ├── buttons.scf │ │ ├── checked_32.tif │ │ ├── loading_16.tif │ │ ├── star_16.tif │ │ └── unchecked_32.tif │ ├── dir.psd │ ├── dir.tif │ ├── dol.tif │ ├── dolcli.tif │ ├── elf.psd │ ├── elf.tif │ ├── eth2gc.tif │ ├── file.psd │ ├── file.tif │ ├── filetype-font.ttf │ ├── flippy.tif │ ├── fpkg.tif │ ├── gamecube.png │ ├── gamecube_rgb.h │ ├── gcdvdsmall.tif │ ├── gcloader.tif │ ├── gcm.tif │ ├── gcnet.tif │ ├── hdd.tif │ ├── images.scf │ ├── kunaigc.tif │ ├── m2loader.tif │ ├── memcard.png │ ├── memcard.tif │ ├── memcard_ind.png │ ├── mp3.psd │ ├── mp3.tif │ ├── ntscj.tif │ ├── ntscu.tif │ ├── pal.tif │ ├── qoob.png │ ├── qoob.tif │ ├── qoob_ind.png │ ├── sdsmall.tif │ ├── swiss.tif │ ├── systemimg.tif │ ├── tgc.tif │ ├── usbgecko.tif │ ├── wiikey.tif │ └── wodeimg.tif │ ├── input.c │ ├── main.c │ ├── mp3.c │ ├── nkit.c │ ├── patcher.c │ ├── patches │ ├── dvd │ │ └── DVDLowTestAlarmHook.s │ ├── gx │ │ ├── GXAdjustForOverscanPatch.s │ │ ├── GXCopyDispHook.s │ │ ├── GXInitTexObjLODHook.s │ │ ├── GXPeekARGBPatch.s │ │ ├── GXPeekZPatch.s │ │ ├── GXPokeARGBPatch.s │ │ ├── GXPokeZPatch.s │ │ ├── GXSetBlendModePatch1.s │ │ ├── GXSetBlendModePatch2.s │ │ ├── GXSetBlendModePatch3.s │ │ ├── GXSetCopyFilterPatch.s │ │ ├── GXSetDispCopyYScalePatch1.s │ │ ├── GXSetDispCopyYScalePatch2.s │ │ ├── GXSetDispCopyYScaleStub1.s │ │ ├── GXSetDispCopyYScaleStub2.s │ │ ├── GXSetProjectionHook.s │ │ ├── GXSetScissorHook.s │ │ ├── GXSetViewportJitterPatch1.s │ │ ├── GXSetViewportJitterPatch2.s │ │ ├── GXSetViewportJitterPatch3.s │ │ ├── GXSetViewportJitterTAAPatch1.s │ │ ├── GXSetViewportJitterTAAPatch3.s │ │ ├── GXSetViewportPatch1.s │ │ ├── GXSetViewportPatch2.s │ │ ├── GXSetViewportPatch3.s │ │ ├── GXSetViewportTAAPatch3.s │ │ ├── __GXSetViewportPatch.s │ │ └── __GXSetViewportTAAPatch.s │ ├── mtx │ │ ├── MTXFrustumHook.s │ │ ├── MTXLightFrustumHook.s │ │ ├── MTXLightPerspectiveHook.s │ │ ├── MTXOrthoHook.s │ │ └── MTXPerspectiveHook.s │ ├── os │ │ └── OSSetArenaHiHook.s │ └── vi │ │ ├── VIConfigure1080i50.s │ │ ├── VIConfigure1080i60.s │ │ ├── VIConfigure1152i.s │ │ ├── VIConfigure240p.s │ │ ├── VIConfigure288p.s │ │ ├── VIConfigure480i.s │ │ ├── VIConfigure480p.s │ │ ├── VIConfigure540p50.s │ │ ├── VIConfigure540p60.s │ │ ├── VIConfigure576i.s │ │ ├── VIConfigure576p.s │ │ ├── VIConfigure960i.s │ │ ├── VIConfigureAutop.s │ │ ├── VIConfigureFieldMode.s │ │ ├── VIConfigureHook1.s │ │ ├── VIConfigureHook1GCVideo.s │ │ ├── VIConfigureHook1RT4K.s │ │ ├── VIConfigureHook2.s │ │ ├── VIConfigureNoYScale.s │ │ ├── VIConfigurePanHook.s │ │ ├── VIConfigurePanHookD.s │ │ ├── VIGetRetraceCountHook.s │ │ ├── VIRetraceHandlerHook.s │ │ └── getTimingPatch.s │ ├── resources │ ├── BmpToGC.exe │ ├── GCBanner.exe │ ├── backdrop.psd │ ├── banner.bnr │ ├── btnblank.psd │ ├── btndevice.psd │ ├── btnexit.psd │ ├── btnhilight.psd │ ├── btninfo.psd │ ├── btnrefresh.psd │ ├── btnsettings.psd │ ├── swissbanner.psd │ └── swissbanner.tga │ ├── rt4k.c │ ├── swiss.c │ ├── util.c │ ├── video.c │ └── wiiload.c ├── pc ├── cheats │ ├── QchEdit.exe │ └── cheats.qch └── usbgecko │ ├── FTD2XX.H │ ├── FTD2XX.lib │ ├── Makefile │ ├── gecko.c │ ├── gecko.h │ ├── main.c │ └── runcmd.bat └── wii └── booter ├── Makefile ├── include └── dolformat.h └── source └── main.c /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/.github/ISSUE_TEMPLATE/feature-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/.github/ISSUE_TEMPLATE/question-report.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-integration-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/.github/workflows/continuous-integration-workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/README.md -------------------------------------------------------------------------------- /audio streaming notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/audio streaming notes.txt -------------------------------------------------------------------------------- /cube/PowerPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/PowerPC.h -------------------------------------------------------------------------------- /cube/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/asm.h -------------------------------------------------------------------------------- /cube/linker-script/ogc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/linker-script/ogc.ld -------------------------------------------------------------------------------- /cube/packer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/packer/Makefile -------------------------------------------------------------------------------- /cube/packer/source/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/packer/source/crt0.S -------------------------------------------------------------------------------- /cube/packer/source/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/packer/source/link.ld -------------------------------------------------------------------------------- /cube/packer/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/packer/source/main.c -------------------------------------------------------------------------------- /cube/packer/source/xz/xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/packer/source/xz/xz.h -------------------------------------------------------------------------------- /cube/packer/source/xz/xz_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/packer/source/xz/xz_config.h -------------------------------------------------------------------------------- /cube/packer/source/xz/xz_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/packer/source/xz/xz_crc32.c -------------------------------------------------------------------------------- /cube/packer/source/xz/xz_crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/packer/source/xz/xz_crc64.c -------------------------------------------------------------------------------- /cube/packer/source/xz/xz_dec_bcj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/packer/source/xz/xz_dec_bcj.c -------------------------------------------------------------------------------- /cube/packer/source/xz/xz_dec_lzma2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/packer/source/xz/xz_dec_lzma2.c -------------------------------------------------------------------------------- /cube/packer/source/xz/xz_dec_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/packer/source/xz/xz_dec_stream.c -------------------------------------------------------------------------------- /cube/packer/source/xz/xz_lzma2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/packer/source/xz/xz_lzma2.h -------------------------------------------------------------------------------- /cube/packer/source/xz/xz_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/packer/source/xz/xz_private.h -------------------------------------------------------------------------------- /cube/packer/source/xz/xz_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/packer/source/xz/xz_sha256.c -------------------------------------------------------------------------------- /cube/packer/source/xz/xz_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/packer/source/xz/xz_stream.h -------------------------------------------------------------------------------- /cube/patches/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/Makefile -------------------------------------------------------------------------------- /cube/patches/base/DVDMath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/DVDMath.c -------------------------------------------------------------------------------- /cube/patches/base/DVDMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/DVDMath.h -------------------------------------------------------------------------------- /cube/patches/base/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/audio.c -------------------------------------------------------------------------------- /cube/patches/base/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/audio.h -------------------------------------------------------------------------------- /cube/patches/base/base.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/base.S -------------------------------------------------------------------------------- /cube/patches/base/base.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/base.ld -------------------------------------------------------------------------------- /cube/patches/base/blockdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/blockdevice.c -------------------------------------------------------------------------------- /cube/patches/base/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/common.h -------------------------------------------------------------------------------- /cube/patches/base/common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/common.ld -------------------------------------------------------------------------------- /cube/patches/base/dolphin/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/dolphin/ar.h -------------------------------------------------------------------------------- /cube/patches/base/dolphin/dolformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/dolphin/dolformat.h -------------------------------------------------------------------------------- /cube/patches/base/dolphin/dvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/dolphin/dvd.h -------------------------------------------------------------------------------- /cube/patches/base/dolphin/exi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/dolphin/exi.h -------------------------------------------------------------------------------- /cube/patches/base/dolphin/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/dolphin/os.c -------------------------------------------------------------------------------- /cube/patches/base/dolphin/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/dolphin/os.h -------------------------------------------------------------------------------- /cube/patches/base/dolphin/os.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/dolphin/os.ld -------------------------------------------------------------------------------- /cube/patches/base/dolphin/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/dolphin/pad.h -------------------------------------------------------------------------------- /cube/patches/base/emulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/emulator.c -------------------------------------------------------------------------------- /cube/patches/base/emulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/emulator.h -------------------------------------------------------------------------------- /cube/patches/base/emulator_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/emulator_card.c -------------------------------------------------------------------------------- /cube/patches/base/emulator_card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/emulator_card.h -------------------------------------------------------------------------------- /cube/patches/base/emulator_dvd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/emulator_dvd.c -------------------------------------------------------------------------------- /cube/patches/base/emulator_eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/emulator_eth.c -------------------------------------------------------------------------------- /cube/patches/base/emulator_eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/emulator_eth.h -------------------------------------------------------------------------------- /cube/patches/base/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/fifo.c -------------------------------------------------------------------------------- /cube/patches/base/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/fifo.h -------------------------------------------------------------------------------- /cube/patches/base/floor.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/floor.S -------------------------------------------------------------------------------- /cube/patches/base/frag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/frag.c -------------------------------------------------------------------------------- /cube/patches/base/frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/frag.h -------------------------------------------------------------------------------- /cube/patches/base/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/interrupt.c -------------------------------------------------------------------------------- /cube/patches/base/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/interrupt.h -------------------------------------------------------------------------------- /cube/patches/base/ipl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/ipl.c -------------------------------------------------------------------------------- /cube/patches/base/ipl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/ipl.h -------------------------------------------------------------------------------- /cube/patches/base/memcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/memcpy.S -------------------------------------------------------------------------------- /cube/patches/base/memmove.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/memmove.S -------------------------------------------------------------------------------- /cube/patches/base/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/os.c -------------------------------------------------------------------------------- /cube/patches/base/pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/pad.c -------------------------------------------------------------------------------- /cube/patches/base/setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/setjmp.S -------------------------------------------------------------------------------- /cube/patches/base/sqrt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/base/sqrt.S -------------------------------------------------------------------------------- /cube/patches/bba/bba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/bba/bba.c -------------------------------------------------------------------------------- /cube/patches/bba/bba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/bba/bba.h -------------------------------------------------------------------------------- /cube/patches/bba/enc28j60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/bba/enc28j60.c -------------------------------------------------------------------------------- /cube/patches/bba/enc28j60.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/bba/enc28j60.h -------------------------------------------------------------------------------- /cube/patches/bba/tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/bba/tcpip.c -------------------------------------------------------------------------------- /cube/patches/bba/w5500.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/bba/w5500.c -------------------------------------------------------------------------------- /cube/patches/bba/w5500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/bba/w5500.h -------------------------------------------------------------------------------- /cube/patches/bba/w6100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/bba/w6100.c -------------------------------------------------------------------------------- /cube/patches/bba/w6300.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/bba/w6300.c -------------------------------------------------------------------------------- /cube/patches/bba/w6x00.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/bba/w6x00.h -------------------------------------------------------------------------------- /cube/patches/cheats/codehandler.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/cheats/codehandler.ld -------------------------------------------------------------------------------- /cube/patches/cheats/codehandler.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/cheats/codehandler.s -------------------------------------------------------------------------------- /cube/patches/cheats/codehandleronly.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/cheats/codehandleronly.s -------------------------------------------------------------------------------- /cube/patches/dvd/dvd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/dvd/dvd.c -------------------------------------------------------------------------------- /cube/patches/flippydrive/flippy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/flippydrive/flippy.c -------------------------------------------------------------------------------- /cube/patches/gcloader/gcloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/gcloader/gcloader.c -------------------------------------------------------------------------------- /cube/patches/ide-exi/ata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/ide-exi/ata.c -------------------------------------------------------------------------------- /cube/patches/ide-exi/ata_isr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/ide-exi/ata_isr.S -------------------------------------------------------------------------------- /cube/patches/sdgecko/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/sdgecko/sd.c -------------------------------------------------------------------------------- /cube/patches/sdgecko/sd_isr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/sdgecko/sd_isr.S -------------------------------------------------------------------------------- /cube/patches/stub/asmfunc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/stub/asmfunc.S -------------------------------------------------------------------------------- /cube/patches/stub/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/stub/crt0.S -------------------------------------------------------------------------------- /cube/patches/stub/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/stub/diskio.h -------------------------------------------------------------------------------- /cube/patches/stub/eltorito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/stub/eltorito.h -------------------------------------------------------------------------------- /cube/patches/stub/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/stub/main.c -------------------------------------------------------------------------------- /cube/patches/stub/mmcbbp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/stub/mmcbbp.c -------------------------------------------------------------------------------- /cube/patches/stub/pff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/stub/pff.c -------------------------------------------------------------------------------- /cube/patches/stub/pff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/stub/pff.h -------------------------------------------------------------------------------- /cube/patches/stub/pffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/stub/pffconf.h -------------------------------------------------------------------------------- /cube/patches/stub/stub.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/stub/stub.ld -------------------------------------------------------------------------------- /cube/patches/usbgecko/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/usbgecko/uart.c -------------------------------------------------------------------------------- /cube/patches/usbgecko/usbgecko.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/usbgecko/usbgecko.c -------------------------------------------------------------------------------- /cube/patches/usbgecko/usbgecko_isr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/usbgecko/usbgecko_isr.S -------------------------------------------------------------------------------- /cube/patches/usbgecko/usbgecko_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/usbgecko/usbgecko_low.c -------------------------------------------------------------------------------- /cube/patches/wkf/wkf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/patches/wkf/wkf.c -------------------------------------------------------------------------------- /cube/reservedarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/reservedarea.h -------------------------------------------------------------------------------- /cube/reservedarea.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/reservedarea.ld -------------------------------------------------------------------------------- /cube/swiss/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/Makefile -------------------------------------------------------------------------------- /cube/swiss/include/bba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/bba.h -------------------------------------------------------------------------------- /cube/swiss/include/bnr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/bnr.h -------------------------------------------------------------------------------- /cube/swiss/include/dvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/dvd.h -------------------------------------------------------------------------------- /cube/swiss/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/elf.h -------------------------------------------------------------------------------- /cube/swiss/include/elf_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/elf_abi.h -------------------------------------------------------------------------------- /cube/swiss/include/eltorito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/eltorito.h -------------------------------------------------------------------------------- /cube/swiss/include/exi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/exi.h -------------------------------------------------------------------------------- /cube/swiss/include/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/files.h -------------------------------------------------------------------------------- /cube/swiss/include/gameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/gameid.h -------------------------------------------------------------------------------- /cube/swiss/include/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/gcm.h -------------------------------------------------------------------------------- /cube/swiss/include/httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/httpd.h -------------------------------------------------------------------------------- /cube/swiss/include/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/input.h -------------------------------------------------------------------------------- /cube/swiss/include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/main.h -------------------------------------------------------------------------------- /cube/swiss/include/mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/mp3.h -------------------------------------------------------------------------------- /cube/swiss/include/nkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/nkit.h -------------------------------------------------------------------------------- /cube/swiss/include/patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/patcher.h -------------------------------------------------------------------------------- /cube/swiss/include/rt4k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/rt4k.h -------------------------------------------------------------------------------- /cube/swiss/include/swiss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/swiss.h -------------------------------------------------------------------------------- /cube/swiss/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/util.h -------------------------------------------------------------------------------- /cube/swiss/include/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/video.h -------------------------------------------------------------------------------- /cube/swiss/include/wiiload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/include/wiiload.h -------------------------------------------------------------------------------- /cube/swiss/makeme.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/makeme.bat -------------------------------------------------------------------------------- /cube/swiss/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/readme.txt -------------------------------------------------------------------------------- /cube/swiss/source/aram/sidestep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/aram/sidestep.c -------------------------------------------------------------------------------- /cube/swiss/source/aram/sidestep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/aram/sidestep.h -------------------------------------------------------------------------------- /cube/swiss/source/aram/ssaram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/aram/ssaram.c -------------------------------------------------------------------------------- /cube/swiss/source/aram/ssaram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/aram/ssaram.h -------------------------------------------------------------------------------- /cube/swiss/source/bba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/bba.c -------------------------------------------------------------------------------- /cube/swiss/source/cheats/cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/cheats/cheats.c -------------------------------------------------------------------------------- /cube/swiss/source/cheats/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/cheats/cheats.h -------------------------------------------------------------------------------- /cube/swiss/source/config/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/config/config.c -------------------------------------------------------------------------------- /cube/swiss/source/config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/config/config.h -------------------------------------------------------------------------------- /cube/swiss/source/config/dolparameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/config/dolparameters.c -------------------------------------------------------------------------------- /cube/swiss/source/config/dolparameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/config/dolparameters.h -------------------------------------------------------------------------------- /cube/swiss/source/config/sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/config/sram.c -------------------------------------------------------------------------------- /cube/swiss/source/config/sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/config/sram.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/aram/aram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/aram/aram.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/aram/aram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/aram/aram.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/aram/deviceHandler-ARAM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/aram/deviceHandler-ARAM.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/aram/deviceHandler-ARAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/aram/deviceHandler-ARAM.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/deviceHandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/deviceHandler.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/deviceHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/deviceHandler.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/dvd/deviceHandler-DVD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/dvd/deviceHandler-DVD.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/dvd/deviceHandler-DVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/dvd/deviceHandler-DVD.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/dvd/drivecodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/dvd/drivecodes.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/dvd/dvd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/dvd/dvd.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/fat/ata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/fat/ata.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/fat/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/fat/ata.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/fat/ataconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/fat/ataconf.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/fat/deviceHandler-FAT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/fat/deviceHandler-FAT.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/fat/deviceHandler-FAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/fat/deviceHandler-FAT.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/filelock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/filelock.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/filelock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/filelock.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/filemeta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/filemeta.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/filemeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/filemeta.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/flippydrive/deviceHandler-flippydrive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/flippydrive/deviceHandler-flippydrive.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/flippydrive/deviceHandler-flippydrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/flippydrive/deviceHandler-flippydrive.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/flippydrive/flippy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/flippydrive/flippy.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/flippydrive/flippy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/flippydrive/flippy.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/fsp/deviceHandler-FSP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/fsp/deviceHandler-FSP.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/fsp/deviceHandler-FSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/fsp/deviceHandler-FSP.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/fsp/fsplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/fsp/fsplib.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/fsp/fsplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/fsp/fsplib.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/fsp/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/fsp/lock.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/fsp/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/fsp/lock.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/ftp/deviceHandler-FTP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/ftp/deviceHandler-FTP.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/ftp/deviceHandler-FTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/ftp/deviceHandler-FTP.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/ftp/ftp_devoptab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/ftp/ftp_devoptab.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/ftp/ftp_devoptab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/ftp/ftp_devoptab.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/gcloader/deviceHandler-gcloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/gcloader/deviceHandler-gcloader.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/gcloader/deviceHandler-gcloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/gcloader/deviceHandler-gcloader.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/gcloader/gcloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/gcloader/gcloader.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/gcloader/gcloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/gcloader/gcloader.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/kunaigc/deviceHandler-KunaiGC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/kunaigc/deviceHandler-KunaiGC.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/kunaigc/deviceHandler-KunaiGC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/kunaigc/deviceHandler-KunaiGC.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/kunaigc/kunaigc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/kunaigc/kunaigc.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/kunaigc/kunaigc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/kunaigc/kunaigc.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/kunaigc/spiflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/kunaigc/spiflash.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/kunaigc/spiflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/kunaigc/spiflash.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/memcard/deviceHandler-CARD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/memcard/deviceHandler-CARD.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/memcard/deviceHandler-CARD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/memcard/deviceHandler-CARD.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/qoob/deviceHandler-Qoob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/qoob/deviceHandler-Qoob.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/qoob/deviceHandler-Qoob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/qoob/deviceHandler-Qoob.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/smb/deviceHandler-SMB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/smb/deviceHandler-SMB.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/smb/deviceHandler-SMB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/smb/deviceHandler-SMB.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/system/deviceHandler-SYS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/system/deviceHandler-SYS.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/system/deviceHandler-SYS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/system/deviceHandler-SYS.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/usbgecko/deviceHandler-usbgecko.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/usbgecko/deviceHandler-usbgecko.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/usbgecko/deviceHandler-usbgecko.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/usbgecko/deviceHandler-usbgecko.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/usbgecko/usbgecko.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/usbgecko/usbgecko.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/usbgecko/usbgecko.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/usbgecko/usbgecko.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/wiikeyfusion/deviceHandler-wiikeyfusion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/wiikeyfusion/deviceHandler-wiikeyfusion.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/wiikeyfusion/deviceHandler-wiikeyfusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/wiikeyfusion/deviceHandler-wiikeyfusion.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/wiikeyfusion/wkf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/wiikeyfusion/wkf.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/wiikeyfusion/wkf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/wiikeyfusion/wkf.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/wode/WodeInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/wode/WodeInterface.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/wode/deviceHandler-WODE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/wode/deviceHandler-WODE.c -------------------------------------------------------------------------------- /cube/swiss/source/devices/wode/deviceHandler-WODE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/wode/deviceHandler-WODE.h -------------------------------------------------------------------------------- /cube/swiss/source/devices/wode/wode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/devices/wode/wode.c -------------------------------------------------------------------------------- /cube/swiss/source/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/elf.c -------------------------------------------------------------------------------- /cube/swiss/source/exi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/exi.c -------------------------------------------------------------------------------- /cube/swiss/source/fatfs/00history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/fatfs/00history.txt -------------------------------------------------------------------------------- /cube/swiss/source/fatfs/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/fatfs/00readme.txt -------------------------------------------------------------------------------- /cube/swiss/source/fatfs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/fatfs/diskio.c -------------------------------------------------------------------------------- /cube/swiss/source/fatfs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/fatfs/diskio.h -------------------------------------------------------------------------------- /cube/swiss/source/fatfs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/fatfs/ff.c -------------------------------------------------------------------------------- /cube/swiss/source/fatfs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/fatfs/ff.h -------------------------------------------------------------------------------- /cube/swiss/source/fatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/fatfs/ffconf.h -------------------------------------------------------------------------------- /cube/swiss/source/fatfs/ffsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/fatfs/ffsystem.c -------------------------------------------------------------------------------- /cube/swiss/source/fatfs/ffunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/fatfs/ffunicode.c -------------------------------------------------------------------------------- /cube/swiss/source/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/files.c -------------------------------------------------------------------------------- /cube/swiss/source/gameid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/gameid.c -------------------------------------------------------------------------------- /cube/swiss/source/gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/gcm.c -------------------------------------------------------------------------------- /cube/swiss/source/gui/FrameBufferMagic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/gui/FrameBufferMagic.c -------------------------------------------------------------------------------- /cube/swiss/source/gui/FrameBufferMagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/gui/FrameBufferMagic.h -------------------------------------------------------------------------------- /cube/swiss/source/gui/IPLFontWrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/gui/IPLFontWrite.c -------------------------------------------------------------------------------- /cube/swiss/source/gui/IPLFontWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/gui/IPLFontWrite.h -------------------------------------------------------------------------------- /cube/swiss/source/gui/blankbanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/gui/blankbanner.c -------------------------------------------------------------------------------- /cube/swiss/source/gui/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/gui/info.c -------------------------------------------------------------------------------- /cube/swiss/source/gui/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/gui/info.h -------------------------------------------------------------------------------- /cube/swiss/source/gui/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/gui/settings.c -------------------------------------------------------------------------------- /cube/swiss/source/gui/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/gui/settings.h -------------------------------------------------------------------------------- /cube/swiss/source/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/httpd.c -------------------------------------------------------------------------------- /cube/swiss/source/images/DOL.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/DOL.psd -------------------------------------------------------------------------------- /cube/swiss/source/images/DOLcli.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/DOLcli.psd -------------------------------------------------------------------------------- /cube/swiss/source/images/backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/backdrop.png -------------------------------------------------------------------------------- /cube/swiss/source/images/backdrop.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/backdrop.psd -------------------------------------------------------------------------------- /cube/swiss/source/images/backdrop.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/backdrop.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/backdrop_ind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/backdrop_ind.png -------------------------------------------------------------------------------- /cube/swiss/source/images/banner_mask.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/banner_mask.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/bba.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/bba.psd -------------------------------------------------------------------------------- /cube/swiss/source/images/bba.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/bba.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/buttons/boxinner.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/buttons/boxinner.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/buttons/boxouter.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/buttons/boxouter.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/buttons/btndevice.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/buttons/btndevice.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/buttons/btnexit.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/buttons/btnexit.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/buttons/btnhilight.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/buttons/btnhilight.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/buttons/btninfo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/buttons/btninfo.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/buttons/btnrefresh.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/buttons/btnrefresh.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/buttons/btns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/buttons/btns.h -------------------------------------------------------------------------------- /cube/swiss/source/images/buttons/btnsettings.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/buttons/btnsettings.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/buttons/buttons.scf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/buttons/buttons.scf -------------------------------------------------------------------------------- /cube/swiss/source/images/buttons/checked_32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/buttons/checked_32.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/buttons/loading_16.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/buttons/loading_16.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/buttons/star_16.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/buttons/star_16.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/buttons/unchecked_32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/buttons/unchecked_32.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/dir.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/dir.psd -------------------------------------------------------------------------------- /cube/swiss/source/images/dir.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/dir.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/dol.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/dol.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/dolcli.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/dolcli.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/elf.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/elf.psd -------------------------------------------------------------------------------- /cube/swiss/source/images/elf.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/elf.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/eth2gc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/eth2gc.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/file.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/file.psd -------------------------------------------------------------------------------- /cube/swiss/source/images/file.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/file.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/filetype-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/filetype-font.ttf -------------------------------------------------------------------------------- /cube/swiss/source/images/flippy.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/flippy.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/fpkg.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/fpkg.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/gamecube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/gamecube.png -------------------------------------------------------------------------------- /cube/swiss/source/images/gamecube_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/gamecube_rgb.h -------------------------------------------------------------------------------- /cube/swiss/source/images/gcdvdsmall.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/gcdvdsmall.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/gcloader.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/gcloader.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/gcm.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/gcm.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/gcnet.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/gcnet.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/hdd.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/hdd.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/images.scf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/images.scf -------------------------------------------------------------------------------- /cube/swiss/source/images/kunaigc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/kunaigc.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/m2loader.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/m2loader.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/memcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/memcard.png -------------------------------------------------------------------------------- /cube/swiss/source/images/memcard.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/memcard.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/memcard_ind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/memcard_ind.png -------------------------------------------------------------------------------- /cube/swiss/source/images/mp3.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/mp3.psd -------------------------------------------------------------------------------- /cube/swiss/source/images/mp3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/mp3.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/ntscj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/ntscj.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/ntscu.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/ntscu.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/pal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/pal.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/qoob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/qoob.png -------------------------------------------------------------------------------- /cube/swiss/source/images/qoob.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/qoob.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/qoob_ind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/qoob_ind.png -------------------------------------------------------------------------------- /cube/swiss/source/images/sdsmall.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/sdsmall.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/swiss.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/swiss.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/systemimg.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/systemimg.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/tgc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/tgc.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/usbgecko.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/usbgecko.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/wiikey.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/wiikey.tif -------------------------------------------------------------------------------- /cube/swiss/source/images/wodeimg.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/images/wodeimg.tif -------------------------------------------------------------------------------- /cube/swiss/source/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/input.c -------------------------------------------------------------------------------- /cube/swiss/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/main.c -------------------------------------------------------------------------------- /cube/swiss/source/mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/mp3.c -------------------------------------------------------------------------------- /cube/swiss/source/nkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/nkit.c -------------------------------------------------------------------------------- /cube/swiss/source/patcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patcher.c -------------------------------------------------------------------------------- /cube/swiss/source/patches/dvd/DVDLowTestAlarmHook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/dvd/DVDLowTestAlarmHook.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXAdjustForOverscanPatch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXAdjustForOverscanPatch.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXCopyDispHook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXCopyDispHook.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXInitTexObjLODHook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXInitTexObjLODHook.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXPeekARGBPatch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXPeekARGBPatch.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXPeekZPatch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXPeekZPatch.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXPokeARGBPatch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXPokeARGBPatch.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXPokeZPatch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXPokeZPatch.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetBlendModePatch1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetBlendModePatch1.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetBlendModePatch2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetBlendModePatch2.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetBlendModePatch3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetBlendModePatch3.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetCopyFilterPatch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetCopyFilterPatch.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetDispCopyYScalePatch1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetDispCopyYScalePatch1.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetDispCopyYScalePatch2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetDispCopyYScalePatch2.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetDispCopyYScaleStub1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetDispCopyYScaleStub1.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetDispCopyYScaleStub2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetDispCopyYScaleStub2.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetProjectionHook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetProjectionHook.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetScissorHook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetScissorHook.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetViewportJitterPatch1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetViewportJitterPatch1.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetViewportJitterPatch2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetViewportJitterPatch2.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetViewportJitterPatch3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetViewportJitterPatch3.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetViewportJitterTAAPatch1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetViewportJitterTAAPatch1.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetViewportJitterTAAPatch3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetViewportJitterTAAPatch3.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetViewportPatch1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetViewportPatch1.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetViewportPatch2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetViewportPatch2.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetViewportPatch3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetViewportPatch3.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/GXSetViewportTAAPatch3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/GXSetViewportTAAPatch3.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/__GXSetViewportPatch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/__GXSetViewportPatch.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/gx/__GXSetViewportTAAPatch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/gx/__GXSetViewportTAAPatch.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/mtx/MTXFrustumHook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/mtx/MTXFrustumHook.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/mtx/MTXLightFrustumHook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/mtx/MTXLightFrustumHook.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/mtx/MTXLightPerspectiveHook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/mtx/MTXLightPerspectiveHook.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/mtx/MTXOrthoHook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/mtx/MTXOrthoHook.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/mtx/MTXPerspectiveHook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/mtx/MTXPerspectiveHook.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/os/OSSetArenaHiHook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/os/OSSetArenaHiHook.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigure1080i50.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigure1080i50.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigure1080i60.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigure1080i60.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigure1152i.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigure1152i.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigure240p.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigure240p.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigure288p.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigure288p.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigure480i.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigure480i.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigure480p.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigure480p.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigure540p50.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigure540p50.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigure540p60.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigure540p60.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigure576i.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigure576i.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigure576p.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigure576p.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigure960i.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigure960i.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigureAutop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigureAutop.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigureFieldMode.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigureFieldMode.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigureHook1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigureHook1.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigureHook1GCVideo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigureHook1GCVideo.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigureHook1RT4K.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigureHook1RT4K.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigureHook2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigureHook2.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigureNoYScale.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigureNoYScale.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigurePanHook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigurePanHook.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIConfigurePanHookD.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIConfigurePanHookD.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIGetRetraceCountHook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIGetRetraceCountHook.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/VIRetraceHandlerHook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/VIRetraceHandlerHook.s -------------------------------------------------------------------------------- /cube/swiss/source/patches/vi/getTimingPatch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/patches/vi/getTimingPatch.s -------------------------------------------------------------------------------- /cube/swiss/source/resources/BmpToGC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/resources/BmpToGC.exe -------------------------------------------------------------------------------- /cube/swiss/source/resources/GCBanner.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/resources/GCBanner.exe -------------------------------------------------------------------------------- /cube/swiss/source/resources/backdrop.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/resources/backdrop.psd -------------------------------------------------------------------------------- /cube/swiss/source/resources/banner.bnr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/resources/banner.bnr -------------------------------------------------------------------------------- /cube/swiss/source/resources/btnblank.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/resources/btnblank.psd -------------------------------------------------------------------------------- /cube/swiss/source/resources/btndevice.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/resources/btndevice.psd -------------------------------------------------------------------------------- /cube/swiss/source/resources/btnexit.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/resources/btnexit.psd -------------------------------------------------------------------------------- /cube/swiss/source/resources/btnhilight.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/resources/btnhilight.psd -------------------------------------------------------------------------------- /cube/swiss/source/resources/btninfo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/resources/btninfo.psd -------------------------------------------------------------------------------- /cube/swiss/source/resources/btnrefresh.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/resources/btnrefresh.psd -------------------------------------------------------------------------------- /cube/swiss/source/resources/btnsettings.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/resources/btnsettings.psd -------------------------------------------------------------------------------- /cube/swiss/source/resources/swissbanner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/resources/swissbanner.psd -------------------------------------------------------------------------------- /cube/swiss/source/resources/swissbanner.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/resources/swissbanner.tga -------------------------------------------------------------------------------- /cube/swiss/source/rt4k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/rt4k.c -------------------------------------------------------------------------------- /cube/swiss/source/swiss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/swiss.c -------------------------------------------------------------------------------- /cube/swiss/source/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/util.c -------------------------------------------------------------------------------- /cube/swiss/source/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/video.c -------------------------------------------------------------------------------- /cube/swiss/source/wiiload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/cube/swiss/source/wiiload.c -------------------------------------------------------------------------------- /pc/cheats/QchEdit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/pc/cheats/QchEdit.exe -------------------------------------------------------------------------------- /pc/cheats/cheats.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/pc/cheats/cheats.qch -------------------------------------------------------------------------------- /pc/usbgecko/FTD2XX.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/pc/usbgecko/FTD2XX.H -------------------------------------------------------------------------------- /pc/usbgecko/FTD2XX.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/pc/usbgecko/FTD2XX.lib -------------------------------------------------------------------------------- /pc/usbgecko/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/pc/usbgecko/Makefile -------------------------------------------------------------------------------- /pc/usbgecko/gecko.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/pc/usbgecko/gecko.c -------------------------------------------------------------------------------- /pc/usbgecko/gecko.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/pc/usbgecko/gecko.h -------------------------------------------------------------------------------- /pc/usbgecko/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/pc/usbgecko/main.c -------------------------------------------------------------------------------- /pc/usbgecko/runcmd.bat: -------------------------------------------------------------------------------- 1 | cmd -------------------------------------------------------------------------------- /wii/booter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/wii/booter/Makefile -------------------------------------------------------------------------------- /wii/booter/include/dolformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/wii/booter/include/dolformat.h -------------------------------------------------------------------------------- /wii/booter/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emukidid/swiss-gc/HEAD/wii/booter/source/main.c --------------------------------------------------------------------------------