├── .gitignore ├── licenses ├── cc0-1.0.txt └── gpl-2.0.txt ├── readme.rst ├── template_c ├── Makefile ├── gbafix │ ├── .gitignore │ ├── Makefile │ └── gbafix.c └── source │ ├── main.c │ └── sys │ ├── gba_cart.ld │ ├── gba_crt0.s │ └── syscalls.c └── template_cxx ├── Makefile ├── gbafix ├── .gitignore ├── Makefile └── gbafix.c └── source ├── main.cpp └── sys ├── gba_cart.ld ├── gba_crt0.s └── syscalls.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/.gitignore -------------------------------------------------------------------------------- /licenses/cc0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/licenses/cc0-1.0.txt -------------------------------------------------------------------------------- /licenses/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/licenses/gpl-2.0.txt -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/readme.rst -------------------------------------------------------------------------------- /template_c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/template_c/Makefile -------------------------------------------------------------------------------- /template_c/gbafix/.gitignore: -------------------------------------------------------------------------------- 1 | gbafix 2 | -------------------------------------------------------------------------------- /template_c/gbafix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/template_c/gbafix/Makefile -------------------------------------------------------------------------------- /template_c/gbafix/gbafix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/template_c/gbafix/gbafix.c -------------------------------------------------------------------------------- /template_c/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/template_c/source/main.c -------------------------------------------------------------------------------- /template_c/source/sys/gba_cart.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/template_c/source/sys/gba_cart.ld -------------------------------------------------------------------------------- /template_c/source/sys/gba_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/template_c/source/sys/gba_crt0.s -------------------------------------------------------------------------------- /template_c/source/sys/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/template_c/source/sys/syscalls.c -------------------------------------------------------------------------------- /template_cxx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/template_cxx/Makefile -------------------------------------------------------------------------------- /template_cxx/gbafix/.gitignore: -------------------------------------------------------------------------------- 1 | gbafix 2 | -------------------------------------------------------------------------------- /template_cxx/gbafix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/template_cxx/gbafix/Makefile -------------------------------------------------------------------------------- /template_cxx/gbafix/gbafix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/template_cxx/gbafix/gbafix.c -------------------------------------------------------------------------------- /template_cxx/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/template_cxx/source/main.cpp -------------------------------------------------------------------------------- /template_cxx/source/sys/gba_cart.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/template_cxx/source/sys/gba_cart.ld -------------------------------------------------------------------------------- /template_cxx/source/sys/gba_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/template_cxx/source/sys/gba_crt0.s -------------------------------------------------------------------------------- /template_cxx/source/sys/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/gba-bootstrap/HEAD/template_cxx/source/sys/syscalls.c --------------------------------------------------------------------------------