├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── files └── UIPatches │ ├── E │ └── game_image │ │ ├── blyt │ │ └── spore.brlyt │ │ └── timg │ │ └── tt_spore_E.tpl │ ├── F │ └── game_image │ │ ├── blyt │ │ └── spore.brlyt │ │ └── timg │ │ └── tt_spore_F.tpl │ ├── G │ └── game_image │ │ ├── blyt │ │ └── spore.brlyt │ │ └── timg │ │ └── tt_spore_G.tpl │ ├── Global │ ├── game_image │ │ └── ctrl │ │ │ └── spore.brctr │ └── message │ │ ├── Lace.bmg │ │ ├── Manu.bmg │ │ └── StaffRole.bmg │ ├── I │ └── game_image │ │ ├── blyt │ │ └── spore.brlyt │ │ └── timg │ │ └── tt_spore_I.tpl │ ├── J │ └── game_image │ │ ├── blyt │ │ └── spore.brlyt │ │ └── timg │ │ └── tt_spore_E.tpl │ ├── K │ └── game_image │ │ ├── blyt │ │ └── spore.brlyt │ │ └── timg │ │ └── tt_spore_E.tpl │ ├── LaceChanges.txt │ ├── M │ └── game_image │ │ ├── blyt │ │ └── spore.brlyt │ │ └── timg │ │ └── tt_spore_M.tpl │ ├── ManuChanges.txt │ ├── Q │ └── game_image │ │ ├── blyt │ │ └── spore.brlyt │ │ └── timg │ │ └── tt_spore_Q.tpl │ ├── S │ └── game_image │ │ ├── blyt │ │ └── spore.brlyt │ │ └── timg │ │ └── tt_spore_S.tpl │ ├── U │ └── game_image │ │ ├── blyt │ │ └── spore.brlyt │ │ └── timg │ │ └── tt_spore_E.tpl │ └── buildui.py └── src ├── ExceptionVectorUsage.md ├── asm_setup.S ├── bootstrap ├── 30fps.S ├── common.S ├── data.S ├── main.c └── mem.ld ├── include ├── common.h ├── dvd.h ├── dwc.h ├── hidenseek.h ├── inputdata.h ├── itemholder.h ├── jgpt.h ├── kartdynamics.h ├── killdata.h ├── loader.h ├── menudata.h ├── musichandler.h ├── os.h ├── player.h ├── racedata.h ├── raceinfo.h ├── racemodeonline.h ├── racepacket.h ├── rknetcontroller.h ├── screentext.h ├── selecthandler.h ├── utils.h └── vec.h ├── make.py ├── payload ├── addrinit.S ├── common.S ├── main.c ├── main │ ├── autobrsar.S │ ├── battlefixes.S │ ├── battlefixes.c │ ├── fastmusic.S │ ├── flagreset.S │ ├── forcecc.S │ ├── glitchprevention.S │ ├── guestflags.S │ ├── hnsdata.c │ ├── hostflags.S │ ├── hudedits.S │ ├── hudedits.c │ ├── invisibility.S │ ├── invisibility.c │ ├── item.S │ ├── itemhit.S │ ├── itemhit.c │ ├── killdata.S │ ├── killdata.c │ ├── kmp.S │ ├── mainmenu.S │ ├── msgeditor.S │ ├── music.S │ ├── mutechars.c │ ├── noclip.c │ ├── patchfile.S │ ├── racecount.S │ ├── respawn.c │ ├── roombuttons.S │ ├── screenedits.S │ ├── spectator.S │ ├── spectator.c │ ├── star.S │ ├── stopper.S │ ├── tag.S │ ├── tag.c │ ├── timer.S │ ├── timer.c │ ├── trackcheck.c │ ├── trackident.S │ ├── trackpatches.S │ ├── version.S │ ├── voting.S │ └── wiilink.S └── mem.ld ├── rmc.ld ├── rmce.ld ├── rmcj.ld ├── rmck.ld └── rmcp.ld /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/README.md -------------------------------------------------------------------------------- /files/UIPatches/E/game_image/blyt/spore.brlyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/E/game_image/blyt/spore.brlyt -------------------------------------------------------------------------------- /files/UIPatches/E/game_image/timg/tt_spore_E.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/E/game_image/timg/tt_spore_E.tpl -------------------------------------------------------------------------------- /files/UIPatches/F/game_image/blyt/spore.brlyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/F/game_image/blyt/spore.brlyt -------------------------------------------------------------------------------- /files/UIPatches/F/game_image/timg/tt_spore_F.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/F/game_image/timg/tt_spore_F.tpl -------------------------------------------------------------------------------- /files/UIPatches/G/game_image/blyt/spore.brlyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/G/game_image/blyt/spore.brlyt -------------------------------------------------------------------------------- /files/UIPatches/G/game_image/timg/tt_spore_G.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/G/game_image/timg/tt_spore_G.tpl -------------------------------------------------------------------------------- /files/UIPatches/Global/game_image/ctrl/spore.brctr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/Global/game_image/ctrl/spore.brctr -------------------------------------------------------------------------------- /files/UIPatches/Global/message/Lace.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/Global/message/Lace.bmg -------------------------------------------------------------------------------- /files/UIPatches/Global/message/Manu.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/Global/message/Manu.bmg -------------------------------------------------------------------------------- /files/UIPatches/Global/message/StaffRole.bmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/Global/message/StaffRole.bmg -------------------------------------------------------------------------------- /files/UIPatches/I/game_image/blyt/spore.brlyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/I/game_image/blyt/spore.brlyt -------------------------------------------------------------------------------- /files/UIPatches/I/game_image/timg/tt_spore_I.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/I/game_image/timg/tt_spore_I.tpl -------------------------------------------------------------------------------- /files/UIPatches/J/game_image/blyt/spore.brlyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/J/game_image/blyt/spore.brlyt -------------------------------------------------------------------------------- /files/UIPatches/J/game_image/timg/tt_spore_E.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/J/game_image/timg/tt_spore_E.tpl -------------------------------------------------------------------------------- /files/UIPatches/K/game_image/blyt/spore.brlyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/K/game_image/blyt/spore.brlyt -------------------------------------------------------------------------------- /files/UIPatches/K/game_image/timg/tt_spore_E.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/K/game_image/timg/tt_spore_E.tpl -------------------------------------------------------------------------------- /files/UIPatches/LaceChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/LaceChanges.txt -------------------------------------------------------------------------------- /files/UIPatches/M/game_image/blyt/spore.brlyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/M/game_image/blyt/spore.brlyt -------------------------------------------------------------------------------- /files/UIPatches/M/game_image/timg/tt_spore_M.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/M/game_image/timg/tt_spore_M.tpl -------------------------------------------------------------------------------- /files/UIPatches/ManuChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/ManuChanges.txt -------------------------------------------------------------------------------- /files/UIPatches/Q/game_image/blyt/spore.brlyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/Q/game_image/blyt/spore.brlyt -------------------------------------------------------------------------------- /files/UIPatches/Q/game_image/timg/tt_spore_Q.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/Q/game_image/timg/tt_spore_Q.tpl -------------------------------------------------------------------------------- /files/UIPatches/S/game_image/blyt/spore.brlyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/S/game_image/blyt/spore.brlyt -------------------------------------------------------------------------------- /files/UIPatches/S/game_image/timg/tt_spore_S.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/S/game_image/timg/tt_spore_S.tpl -------------------------------------------------------------------------------- /files/UIPatches/U/game_image/blyt/spore.brlyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/U/game_image/blyt/spore.brlyt -------------------------------------------------------------------------------- /files/UIPatches/U/game_image/timg/tt_spore_E.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/U/game_image/timg/tt_spore_E.tpl -------------------------------------------------------------------------------- /files/UIPatches/buildui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/files/UIPatches/buildui.py -------------------------------------------------------------------------------- /src/ExceptionVectorUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/ExceptionVectorUsage.md -------------------------------------------------------------------------------- /src/asm_setup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/asm_setup.S -------------------------------------------------------------------------------- /src/bootstrap/30fps.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/bootstrap/30fps.S -------------------------------------------------------------------------------- /src/bootstrap/common.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/bootstrap/common.S -------------------------------------------------------------------------------- /src/bootstrap/data.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/bootstrap/data.S -------------------------------------------------------------------------------- /src/bootstrap/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/bootstrap/main.c -------------------------------------------------------------------------------- /src/bootstrap/mem.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/bootstrap/mem.ld -------------------------------------------------------------------------------- /src/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/common.h -------------------------------------------------------------------------------- /src/include/dvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/dvd.h -------------------------------------------------------------------------------- /src/include/dwc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/dwc.h -------------------------------------------------------------------------------- /src/include/hidenseek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/hidenseek.h -------------------------------------------------------------------------------- /src/include/inputdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/inputdata.h -------------------------------------------------------------------------------- /src/include/itemholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/itemholder.h -------------------------------------------------------------------------------- /src/include/jgpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/jgpt.h -------------------------------------------------------------------------------- /src/include/kartdynamics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/kartdynamics.h -------------------------------------------------------------------------------- /src/include/killdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/killdata.h -------------------------------------------------------------------------------- /src/include/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/loader.h -------------------------------------------------------------------------------- /src/include/menudata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/menudata.h -------------------------------------------------------------------------------- /src/include/musichandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/musichandler.h -------------------------------------------------------------------------------- /src/include/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/os.h -------------------------------------------------------------------------------- /src/include/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/player.h -------------------------------------------------------------------------------- /src/include/racedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/racedata.h -------------------------------------------------------------------------------- /src/include/raceinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/raceinfo.h -------------------------------------------------------------------------------- /src/include/racemodeonline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/racemodeonline.h -------------------------------------------------------------------------------- /src/include/racepacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/racepacket.h -------------------------------------------------------------------------------- /src/include/rknetcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/rknetcontroller.h -------------------------------------------------------------------------------- /src/include/screentext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/screentext.h -------------------------------------------------------------------------------- /src/include/selecthandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/selecthandler.h -------------------------------------------------------------------------------- /src/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/utils.h -------------------------------------------------------------------------------- /src/include/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/include/vec.h -------------------------------------------------------------------------------- /src/make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/make.py -------------------------------------------------------------------------------- /src/payload/addrinit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/addrinit.S -------------------------------------------------------------------------------- /src/payload/common.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/common.S -------------------------------------------------------------------------------- /src/payload/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main.c -------------------------------------------------------------------------------- /src/payload/main/autobrsar.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/autobrsar.S -------------------------------------------------------------------------------- /src/payload/main/battlefixes.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/battlefixes.S -------------------------------------------------------------------------------- /src/payload/main/battlefixes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/battlefixes.c -------------------------------------------------------------------------------- /src/payload/main/fastmusic.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/fastmusic.S -------------------------------------------------------------------------------- /src/payload/main/flagreset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/flagreset.S -------------------------------------------------------------------------------- /src/payload/main/forcecc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/forcecc.S -------------------------------------------------------------------------------- /src/payload/main/glitchprevention.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/glitchprevention.S -------------------------------------------------------------------------------- /src/payload/main/guestflags.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/guestflags.S -------------------------------------------------------------------------------- /src/payload/main/hnsdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/hnsdata.c -------------------------------------------------------------------------------- /src/payload/main/hostflags.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/hostflags.S -------------------------------------------------------------------------------- /src/payload/main/hudedits.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/hudedits.S -------------------------------------------------------------------------------- /src/payload/main/hudedits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/hudedits.c -------------------------------------------------------------------------------- /src/payload/main/invisibility.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/invisibility.S -------------------------------------------------------------------------------- /src/payload/main/invisibility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/invisibility.c -------------------------------------------------------------------------------- /src/payload/main/item.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/item.S -------------------------------------------------------------------------------- /src/payload/main/itemhit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/itemhit.S -------------------------------------------------------------------------------- /src/payload/main/itemhit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/itemhit.c -------------------------------------------------------------------------------- /src/payload/main/killdata.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/killdata.S -------------------------------------------------------------------------------- /src/payload/main/killdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/killdata.c -------------------------------------------------------------------------------- /src/payload/main/kmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/kmp.S -------------------------------------------------------------------------------- /src/payload/main/mainmenu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/mainmenu.S -------------------------------------------------------------------------------- /src/payload/main/msgeditor.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/msgeditor.S -------------------------------------------------------------------------------- /src/payload/main/music.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/music.S -------------------------------------------------------------------------------- /src/payload/main/mutechars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/mutechars.c -------------------------------------------------------------------------------- /src/payload/main/noclip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/noclip.c -------------------------------------------------------------------------------- /src/payload/main/patchfile.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/patchfile.S -------------------------------------------------------------------------------- /src/payload/main/racecount.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/racecount.S -------------------------------------------------------------------------------- /src/payload/main/respawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/respawn.c -------------------------------------------------------------------------------- /src/payload/main/roombuttons.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/roombuttons.S -------------------------------------------------------------------------------- /src/payload/main/screenedits.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/screenedits.S -------------------------------------------------------------------------------- /src/payload/main/spectator.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/spectator.S -------------------------------------------------------------------------------- /src/payload/main/spectator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/spectator.c -------------------------------------------------------------------------------- /src/payload/main/star.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/star.S -------------------------------------------------------------------------------- /src/payload/main/stopper.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/stopper.S -------------------------------------------------------------------------------- /src/payload/main/tag.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/tag.S -------------------------------------------------------------------------------- /src/payload/main/tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/tag.c -------------------------------------------------------------------------------- /src/payload/main/timer.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/timer.S -------------------------------------------------------------------------------- /src/payload/main/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/timer.c -------------------------------------------------------------------------------- /src/payload/main/trackcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/trackcheck.c -------------------------------------------------------------------------------- /src/payload/main/trackident.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/trackident.S -------------------------------------------------------------------------------- /src/payload/main/trackpatches.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/trackpatches.S -------------------------------------------------------------------------------- /src/payload/main/version.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/version.S -------------------------------------------------------------------------------- /src/payload/main/voting.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/voting.S -------------------------------------------------------------------------------- /src/payload/main/wiilink.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/main/wiilink.S -------------------------------------------------------------------------------- /src/payload/mem.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/payload/mem.ld -------------------------------------------------------------------------------- /src/rmc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/rmc.ld -------------------------------------------------------------------------------- /src/rmce.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/rmce.ld -------------------------------------------------------------------------------- /src/rmcj.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/rmcj.ld -------------------------------------------------------------------------------- /src/rmck.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/rmck.ld -------------------------------------------------------------------------------- /src/rmcp.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLF78/HideNSeek/HEAD/src/rmcp.ld --------------------------------------------------------------------------------