├── .gitignore ├── Makefile ├── assets ├── banner.bnr ├── banner.png ├── banner_shorter.cwav ├── build-cia.rsf ├── icon-24px.png ├── icon-48px.png ├── icon.pdn └── icon.smdh ├── include ├── am.h ├── bank.h ├── box_viewer.h ├── data.h ├── error.h ├── font.h ├── fs.h ├── gfx.h ├── key.h ├── personal.h ├── pkdir.h ├── pokedex.h ├── save.h ├── smdh.h ├── ts.h └── version.h └── source ├── am.c ├── bank.c ├── box_viewer.c ├── data.c ├── font.c ├── fs.c ├── gfx.c ├── main.c ├── personal.c ├── pokedex.c ├── save.c ├── text ├── moves.c ├── status.c ├── text.c └── types.c └── ts.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/Makefile -------------------------------------------------------------------------------- /assets/banner.bnr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/assets/banner.bnr -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/banner_shorter.cwav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/assets/banner_shorter.cwav -------------------------------------------------------------------------------- /assets/build-cia.rsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/assets/build-cia.rsf -------------------------------------------------------------------------------- /assets/icon-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/assets/icon-24px.png -------------------------------------------------------------------------------- /assets/icon-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/assets/icon-48px.png -------------------------------------------------------------------------------- /assets/icon.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/assets/icon.pdn -------------------------------------------------------------------------------- /assets/icon.smdh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/assets/icon.smdh -------------------------------------------------------------------------------- /include/am.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/include/am.h -------------------------------------------------------------------------------- /include/bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/include/bank.h -------------------------------------------------------------------------------- /include/box_viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/include/box_viewer.h -------------------------------------------------------------------------------- /include/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/include/data.h -------------------------------------------------------------------------------- /include/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/include/error.h -------------------------------------------------------------------------------- /include/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/include/font.h -------------------------------------------------------------------------------- /include/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/include/fs.h -------------------------------------------------------------------------------- /include/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/include/gfx.h -------------------------------------------------------------------------------- /include/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/include/key.h -------------------------------------------------------------------------------- /include/personal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/include/personal.h -------------------------------------------------------------------------------- /include/pkdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/include/pkdir.h -------------------------------------------------------------------------------- /include/pokedex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/include/pokedex.h -------------------------------------------------------------------------------- /include/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/include/save.h -------------------------------------------------------------------------------- /include/smdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/include/smdh.h -------------------------------------------------------------------------------- /include/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/include/ts.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/include/version.h -------------------------------------------------------------------------------- /source/am.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/source/am.c -------------------------------------------------------------------------------- /source/bank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/source/bank.c -------------------------------------------------------------------------------- /source/box_viewer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/source/box_viewer.c -------------------------------------------------------------------------------- /source/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/source/data.c -------------------------------------------------------------------------------- /source/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/source/font.c -------------------------------------------------------------------------------- /source/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/source/fs.c -------------------------------------------------------------------------------- /source/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/source/gfx.c -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/source/main.c -------------------------------------------------------------------------------- /source/personal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/source/personal.c -------------------------------------------------------------------------------- /source/pokedex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/source/pokedex.c -------------------------------------------------------------------------------- /source/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/source/save.c -------------------------------------------------------------------------------- /source/text/moves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/source/text/moves.c -------------------------------------------------------------------------------- /source/text/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/source/text/status.c -------------------------------------------------------------------------------- /source/text/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/source/text/text.c -------------------------------------------------------------------------------- /source/text/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/source/text/types.c -------------------------------------------------------------------------------- /source/ts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocario/PHBankGB/HEAD/source/ts.c --------------------------------------------------------------------------------