├── .gitignore ├── Makefile ├── README.md ├── fb2k_dx.sym ├── gfx ├── logo.2bpp ├── logo.png └── sgb │ ├── predef.pal │ ├── sgb_border.4bpp │ ├── sgb_border.bin │ ├── sgb_border.pal │ ├── sgb_border.png │ └── sgb_border_tiles.png ├── inc ├── asserts.inc ├── const.inc ├── coords.inc ├── gfx.inc ├── gfx_constants.inc ├── hardware.inc ├── ram.inc └── scgb_constants.inc └── src ├── 16.asm ├── color.asm ├── dx.asm ├── gdma.asm └── sgb ├── blk_packets.asm ├── ctrl_packets.asm ├── layouts.asm ├── pal_packets.asm └── sgb.asm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/README.md -------------------------------------------------------------------------------- /fb2k_dx.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/fb2k_dx.sym -------------------------------------------------------------------------------- /gfx/logo.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/gfx/logo.2bpp -------------------------------------------------------------------------------- /gfx/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/gfx/logo.png -------------------------------------------------------------------------------- /gfx/sgb/predef.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/gfx/sgb/predef.pal -------------------------------------------------------------------------------- /gfx/sgb/sgb_border.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/gfx/sgb/sgb_border.4bpp -------------------------------------------------------------------------------- /gfx/sgb/sgb_border.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/gfx/sgb/sgb_border.bin -------------------------------------------------------------------------------- /gfx/sgb/sgb_border.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/gfx/sgb/sgb_border.pal -------------------------------------------------------------------------------- /gfx/sgb/sgb_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/gfx/sgb/sgb_border.png -------------------------------------------------------------------------------- /gfx/sgb/sgb_border_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/gfx/sgb/sgb_border_tiles.png -------------------------------------------------------------------------------- /inc/asserts.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/inc/asserts.inc -------------------------------------------------------------------------------- /inc/const.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/inc/const.inc -------------------------------------------------------------------------------- /inc/coords.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/inc/coords.inc -------------------------------------------------------------------------------- /inc/gfx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/inc/gfx.inc -------------------------------------------------------------------------------- /inc/gfx_constants.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/inc/gfx_constants.inc -------------------------------------------------------------------------------- /inc/hardware.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/inc/hardware.inc -------------------------------------------------------------------------------- /inc/ram.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/inc/ram.inc -------------------------------------------------------------------------------- /inc/scgb_constants.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/inc/scgb_constants.inc -------------------------------------------------------------------------------- /src/16.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/src/16.asm -------------------------------------------------------------------------------- /src/color.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/src/color.asm -------------------------------------------------------------------------------- /src/dx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/src/dx.asm -------------------------------------------------------------------------------- /src/gdma.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/src/gdma.asm -------------------------------------------------------------------------------- /src/sgb/blk_packets.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/src/sgb/blk_packets.asm -------------------------------------------------------------------------------- /src/sgb/ctrl_packets.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/src/sgb/ctrl_packets.asm -------------------------------------------------------------------------------- /src/sgb/layouts.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/src/sgb/layouts.asm -------------------------------------------------------------------------------- /src/sgb/pal_packets.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/src/sgb/pal_packets.asm -------------------------------------------------------------------------------- /src/sgb/sgb.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zarithya/Faceball2000DX/HEAD/src/sgb/sgb.asm --------------------------------------------------------------------------------