├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── examples ├── assemble.bat ├── assemble.sh ├── example.asm ├── hello-world.asm ├── images │ ├── hello_world.inc │ ├── hello_world.png │ ├── pong.inc │ ├── pong.png │ ├── sgb_border.inc │ ├── sgb_border.png │ ├── title.inc │ └── title.png └── music │ └── funkyforest.asm ├── gingerbread.asm └── sgb_border.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/README.md -------------------------------------------------------------------------------- /examples/assemble.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/examples/assemble.bat -------------------------------------------------------------------------------- /examples/assemble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/examples/assemble.sh -------------------------------------------------------------------------------- /examples/example.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/examples/example.asm -------------------------------------------------------------------------------- /examples/hello-world.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/examples/hello-world.asm -------------------------------------------------------------------------------- /examples/images/hello_world.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/examples/images/hello_world.inc -------------------------------------------------------------------------------- /examples/images/hello_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/examples/images/hello_world.png -------------------------------------------------------------------------------- /examples/images/pong.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/examples/images/pong.inc -------------------------------------------------------------------------------- /examples/images/pong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/examples/images/pong.png -------------------------------------------------------------------------------- /examples/images/sgb_border.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/examples/images/sgb_border.inc -------------------------------------------------------------------------------- /examples/images/sgb_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/examples/images/sgb_border.png -------------------------------------------------------------------------------- /examples/images/title.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/examples/images/title.inc -------------------------------------------------------------------------------- /examples/images/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/examples/images/title.png -------------------------------------------------------------------------------- /examples/music/funkyforest.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/examples/music/funkyforest.asm -------------------------------------------------------------------------------- /gingerbread.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/gingerbread.asm -------------------------------------------------------------------------------- /sgb_border.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrnbom/gingerbread/HEAD/sgb_border.py --------------------------------------------------------------------------------