├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── exploit ├── Makefile ├── ac.c ├── gaej_v100.ld ├── gaej_v101.ld ├── gafe.ld ├── gafj_v100.ld ├── gafj_v101.ld ├── gafp_eng.ld ├── gafp_fre.ld ├── gafp_ger.ld ├── gafp_ita.ld ├── gafp_spa.ld ├── gafu.ld ├── nesrom │ ├── README.md │ ├── ldscripts │ │ └── nes.ld │ ├── resources │ │ ├── chr.chr │ │ ├── nametable.nam │ │ ├── nametable2.nam │ │ └── pal.pal │ ├── src │ │ ├── cool_macros.asm │ │ ├── header.asm │ │ ├── main.asm │ │ ├── nes.asm │ │ └── utils.asm │ └── tools │ │ ├── ACNESCreator.CommandLine.exe │ │ ├── ACNESCreator.Core.dll │ │ ├── GCNToolKit.dll │ │ ├── README.md │ │ ├── ca65 │ │ ├── ca65.exe │ │ ├── ld65 │ │ └── ld65.exe └── start.S ├── patcher ├── Makefile ├── gaej_v100.ld ├── gaej_v101.ld ├── gafe.ld ├── gafj_v100.ld ├── gafj_v101.ld ├── gafp_eng.ld ├── gafp_fre.ld ├── gafp_ger.ld ├── gafp_ita.ld ├── gafp_spa.ld ├── gafu.ld └── start.S └── town ├── README.md ├── gaej.gci ├── gafe.gci ├── gafj.gci ├── gafp.gci ├── gafu.gci └── unedited ├── gaej.gci ├── gafe.gci ├── gafj.gci ├── gafp.gci └── gafu.gci /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/README.md -------------------------------------------------------------------------------- /exploit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/Makefile -------------------------------------------------------------------------------- /exploit/ac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/ac.c -------------------------------------------------------------------------------- /exploit/gaej_v100.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/gaej_v100.ld -------------------------------------------------------------------------------- /exploit/gaej_v101.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/gaej_v101.ld -------------------------------------------------------------------------------- /exploit/gafe.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/gafe.ld -------------------------------------------------------------------------------- /exploit/gafj_v100.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/gafj_v100.ld -------------------------------------------------------------------------------- /exploit/gafj_v101.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/gafj_v101.ld -------------------------------------------------------------------------------- /exploit/gafp_eng.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/gafp_eng.ld -------------------------------------------------------------------------------- /exploit/gafp_fre.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/gafp_fre.ld -------------------------------------------------------------------------------- /exploit/gafp_ger.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/gafp_ger.ld -------------------------------------------------------------------------------- /exploit/gafp_ita.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/gafp_ita.ld -------------------------------------------------------------------------------- /exploit/gafp_spa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/gafp_spa.ld -------------------------------------------------------------------------------- /exploit/gafu.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/gafu.ld -------------------------------------------------------------------------------- /exploit/nesrom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/README.md -------------------------------------------------------------------------------- /exploit/nesrom/ldscripts/nes.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/ldscripts/nes.ld -------------------------------------------------------------------------------- /exploit/nesrom/resources/chr.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/resources/chr.chr -------------------------------------------------------------------------------- /exploit/nesrom/resources/nametable.nam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/resources/nametable.nam -------------------------------------------------------------------------------- /exploit/nesrom/resources/nametable2.nam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/resources/nametable2.nam -------------------------------------------------------------------------------- /exploit/nesrom/resources/pal.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/resources/pal.pal -------------------------------------------------------------------------------- /exploit/nesrom/src/cool_macros.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/src/cool_macros.asm -------------------------------------------------------------------------------- /exploit/nesrom/src/header.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/src/header.asm -------------------------------------------------------------------------------- /exploit/nesrom/src/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/src/main.asm -------------------------------------------------------------------------------- /exploit/nesrom/src/nes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/src/nes.asm -------------------------------------------------------------------------------- /exploit/nesrom/src/utils.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/src/utils.asm -------------------------------------------------------------------------------- /exploit/nesrom/tools/ACNESCreator.CommandLine.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/tools/ACNESCreator.CommandLine.exe -------------------------------------------------------------------------------- /exploit/nesrom/tools/ACNESCreator.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/tools/ACNESCreator.Core.dll -------------------------------------------------------------------------------- /exploit/nesrom/tools/GCNToolKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/tools/GCNToolKit.dll -------------------------------------------------------------------------------- /exploit/nesrom/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/tools/README.md -------------------------------------------------------------------------------- /exploit/nesrom/tools/ca65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/tools/ca65 -------------------------------------------------------------------------------- /exploit/nesrom/tools/ca65.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/tools/ca65.exe -------------------------------------------------------------------------------- /exploit/nesrom/tools/ld65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/tools/ld65 -------------------------------------------------------------------------------- /exploit/nesrom/tools/ld65.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/nesrom/tools/ld65.exe -------------------------------------------------------------------------------- /exploit/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/exploit/start.S -------------------------------------------------------------------------------- /patcher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/patcher/Makefile -------------------------------------------------------------------------------- /patcher/gaej_v100.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/patcher/gaej_v100.ld -------------------------------------------------------------------------------- /patcher/gaej_v101.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/patcher/gaej_v101.ld -------------------------------------------------------------------------------- /patcher/gafe.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/patcher/gafe.ld -------------------------------------------------------------------------------- /patcher/gafj_v100.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/patcher/gafj_v100.ld -------------------------------------------------------------------------------- /patcher/gafj_v101.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/patcher/gafj_v101.ld -------------------------------------------------------------------------------- /patcher/gafp_eng.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/patcher/gafp_eng.ld -------------------------------------------------------------------------------- /patcher/gafp_fre.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/patcher/gafp_fre.ld -------------------------------------------------------------------------------- /patcher/gafp_ger.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/patcher/gafp_ger.ld -------------------------------------------------------------------------------- /patcher/gafp_ita.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/patcher/gafp_ita.ld -------------------------------------------------------------------------------- /patcher/gafp_spa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/patcher/gafp_spa.ld -------------------------------------------------------------------------------- /patcher/gafu.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/patcher/gafu.ld -------------------------------------------------------------------------------- /patcher/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/patcher/start.S -------------------------------------------------------------------------------- /town/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/town/README.md -------------------------------------------------------------------------------- /town/gaej.gci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/town/gaej.gci -------------------------------------------------------------------------------- /town/gafe.gci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/town/gafe.gci -------------------------------------------------------------------------------- /town/gafj.gci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/town/gafj.gci -------------------------------------------------------------------------------- /town/gafp.gci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/town/gafp.gci -------------------------------------------------------------------------------- /town/gafu.gci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/town/gafu.gci -------------------------------------------------------------------------------- /town/unedited/gaej.gci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/town/unedited/gaej.gci -------------------------------------------------------------------------------- /town/unedited/gafe.gci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/town/unedited/gafe.gci -------------------------------------------------------------------------------- /town/unedited/gafj.gci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/town/unedited/gafj.gci -------------------------------------------------------------------------------- /town/unedited/gafp.gci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/town/unedited/gafp.gci -------------------------------------------------------------------------------- /town/unedited/gafu.gci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/ac-exploit-gc/HEAD/town/unedited/gafu.gci --------------------------------------------------------------------------------