├── .clang-format ├── .gitignore ├── Makefile ├── README.md ├── asm ├── code.s ├── code_1.s ├── data.s ├── event.s ├── fake_glue.s └── rodata.s ├── data └── fe6_link_loader.bin ├── fe7_us.lds ├── fe7_us.sha1 ├── include ├── armfunc.h ├── asm_prelude.inc ├── async_upload.h ├── attributes.h ├── audio.h ├── banim_sprite.h ├── bm.h ├── chapter_info.h ├── constants │ ├── song.h │ └── terrain.h ├── debug_text.h ├── event.h ├── face.h ├── gbaio.h ├── gbasram.h ├── gbasvc.h ├── gbavideo.h ├── hardware.h ├── icon.h ├── m4a.h ├── m4a.inc ├── map.h ├── msg.h ├── prelude.h ├── proc.h ├── sprite.h ├── text.h ├── types.h ├── unit.h ├── unknown_functions.h └── util.h ├── pending └── func_08034884.c ├── src ├── armfunc.s ├── async_upload.c ├── audio.c ├── banim_sprite.c ├── bm.c ├── crt0.s ├── debug_text.c ├── event.c ├── face.c ├── gbasram.c ├── gbasvc.s ├── hardware.c ├── icon.c ├── interrupt.c ├── m4a.c ├── m4a_1.s ├── main.c ├── map.c ├── msg.c ├── proc.c ├── sio_link_loader.s ├── sprite.c ├── text.c ├── unit.c └── util.c └── tools ├── .gitignore ├── fe7_us.cfg ├── install_agbcc.sh └── scripts └── scan_thumb.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/README.md -------------------------------------------------------------------------------- /asm/code.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/asm/code.s -------------------------------------------------------------------------------- /asm/code_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/asm/code_1.s -------------------------------------------------------------------------------- /asm/data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/asm/data.s -------------------------------------------------------------------------------- /asm/event.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/asm/event.s -------------------------------------------------------------------------------- /asm/fake_glue.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/asm/fake_glue.s -------------------------------------------------------------------------------- /asm/rodata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/asm/rodata.s -------------------------------------------------------------------------------- /data/fe6_link_loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/data/fe6_link_loader.bin -------------------------------------------------------------------------------- /fe7_us.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/fe7_us.lds -------------------------------------------------------------------------------- /fe7_us.sha1: -------------------------------------------------------------------------------- 1 | c735fdbb9e8abe19e0c6a44708df19acc962e204 fe7_us.gba 2 | -------------------------------------------------------------------------------- /include/armfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/armfunc.h -------------------------------------------------------------------------------- /include/asm_prelude.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/asm_prelude.inc -------------------------------------------------------------------------------- /include/async_upload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/async_upload.h -------------------------------------------------------------------------------- /include/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/attributes.h -------------------------------------------------------------------------------- /include/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/audio.h -------------------------------------------------------------------------------- /include/banim_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/banim_sprite.h -------------------------------------------------------------------------------- /include/bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/bm.h -------------------------------------------------------------------------------- /include/chapter_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/chapter_info.h -------------------------------------------------------------------------------- /include/constants/song.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/constants/song.h -------------------------------------------------------------------------------- /include/constants/terrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/constants/terrain.h -------------------------------------------------------------------------------- /include/debug_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/debug_text.h -------------------------------------------------------------------------------- /include/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/event.h -------------------------------------------------------------------------------- /include/face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/face.h -------------------------------------------------------------------------------- /include/gbaio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/gbaio.h -------------------------------------------------------------------------------- /include/gbasram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/gbasram.h -------------------------------------------------------------------------------- /include/gbasvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/gbasvc.h -------------------------------------------------------------------------------- /include/gbavideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/gbavideo.h -------------------------------------------------------------------------------- /include/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/hardware.h -------------------------------------------------------------------------------- /include/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/icon.h -------------------------------------------------------------------------------- /include/m4a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/m4a.h -------------------------------------------------------------------------------- /include/m4a.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/m4a.inc -------------------------------------------------------------------------------- /include/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/map.h -------------------------------------------------------------------------------- /include/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/msg.h -------------------------------------------------------------------------------- /include/prelude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/prelude.h -------------------------------------------------------------------------------- /include/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/proc.h -------------------------------------------------------------------------------- /include/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/sprite.h -------------------------------------------------------------------------------- /include/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/text.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/types.h -------------------------------------------------------------------------------- /include/unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/unit.h -------------------------------------------------------------------------------- /include/unknown_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/unknown_functions.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/include/util.h -------------------------------------------------------------------------------- /pending/func_08034884.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/pending/func_08034884.c -------------------------------------------------------------------------------- /src/armfunc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/armfunc.s -------------------------------------------------------------------------------- /src/async_upload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/async_upload.c -------------------------------------------------------------------------------- /src/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/audio.c -------------------------------------------------------------------------------- /src/banim_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/banim_sprite.c -------------------------------------------------------------------------------- /src/bm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/bm.c -------------------------------------------------------------------------------- /src/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/crt0.s -------------------------------------------------------------------------------- /src/debug_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/debug_text.c -------------------------------------------------------------------------------- /src/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/event.c -------------------------------------------------------------------------------- /src/face.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/face.c -------------------------------------------------------------------------------- /src/gbasram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/gbasram.c -------------------------------------------------------------------------------- /src/gbasvc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/gbasvc.s -------------------------------------------------------------------------------- /src/hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/hardware.c -------------------------------------------------------------------------------- /src/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/icon.c -------------------------------------------------------------------------------- /src/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/interrupt.c -------------------------------------------------------------------------------- /src/m4a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/m4a.c -------------------------------------------------------------------------------- /src/m4a_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/m4a_1.s -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/main.c -------------------------------------------------------------------------------- /src/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/map.c -------------------------------------------------------------------------------- /src/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/msg.c -------------------------------------------------------------------------------- /src/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/proc.c -------------------------------------------------------------------------------- /src/sio_link_loader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/sio_link_loader.s -------------------------------------------------------------------------------- /src/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/sprite.c -------------------------------------------------------------------------------- /src/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/text.c -------------------------------------------------------------------------------- /src/unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/unit.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/src/util.c -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | agbcc 2 | -------------------------------------------------------------------------------- /tools/fe7_us.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/tools/fe7_us.cfg -------------------------------------------------------------------------------- /tools/install_agbcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/tools/install_agbcc.sh -------------------------------------------------------------------------------- /tools/scripts/scan_thumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanHash/fe7_us/HEAD/tools/scripts/scan_thumb.py --------------------------------------------------------------------------------