├── .gitignore ├── .gitmodules ├── README.md ├── cardputer_arcade_border.png ├── cardputer_arcade_border_CC_license.txt ├── dmg.h ├── gameboy_enhanced_firmware_gameboy_colour_alpha.bin ├── gb_cardputer.ino ├── gbc.h ├── glue.h ├── minigb_apu_cardputer ├── LICENSE ├── minigb_apu.c └── minigb_apu.h ├── sgb.h ├── sgb_borders.h ├── stereo_tv_border.png └── stereo_tv_border_CC_license.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode 2 | /build 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-PauI/Gameboy-Enhanced-Firmware-m5stack-cardputer-/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-PauI/Gameboy-Enhanced-Firmware-m5stack-cardputer-/HEAD/README.md -------------------------------------------------------------------------------- /cardputer_arcade_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-PauI/Gameboy-Enhanced-Firmware-m5stack-cardputer-/HEAD/cardputer_arcade_border.png -------------------------------------------------------------------------------- /cardputer_arcade_border_CC_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-PauI/Gameboy-Enhanced-Firmware-m5stack-cardputer-/HEAD/cardputer_arcade_border_CC_license.txt -------------------------------------------------------------------------------- /dmg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-PauI/Gameboy-Enhanced-Firmware-m5stack-cardputer-/HEAD/dmg.h -------------------------------------------------------------------------------- /gameboy_enhanced_firmware_gameboy_colour_alpha.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-PauI/Gameboy-Enhanced-Firmware-m5stack-cardputer-/HEAD/gameboy_enhanced_firmware_gameboy_colour_alpha.bin -------------------------------------------------------------------------------- /gb_cardputer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-PauI/Gameboy-Enhanced-Firmware-m5stack-cardputer-/HEAD/gb_cardputer.ino -------------------------------------------------------------------------------- /gbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-PauI/Gameboy-Enhanced-Firmware-m5stack-cardputer-/HEAD/gbc.h -------------------------------------------------------------------------------- /glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-PauI/Gameboy-Enhanced-Firmware-m5stack-cardputer-/HEAD/glue.h -------------------------------------------------------------------------------- /minigb_apu_cardputer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-PauI/Gameboy-Enhanced-Firmware-m5stack-cardputer-/HEAD/minigb_apu_cardputer/LICENSE -------------------------------------------------------------------------------- /minigb_apu_cardputer/minigb_apu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-PauI/Gameboy-Enhanced-Firmware-m5stack-cardputer-/HEAD/minigb_apu_cardputer/minigb_apu.c -------------------------------------------------------------------------------- /minigb_apu_cardputer/minigb_apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-PauI/Gameboy-Enhanced-Firmware-m5stack-cardputer-/HEAD/minigb_apu_cardputer/minigb_apu.h -------------------------------------------------------------------------------- /sgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-PauI/Gameboy-Enhanced-Firmware-m5stack-cardputer-/HEAD/sgb.h -------------------------------------------------------------------------------- /sgb_borders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-PauI/Gameboy-Enhanced-Firmware-m5stack-cardputer-/HEAD/sgb_borders.h -------------------------------------------------------------------------------- /stereo_tv_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-PauI/Gameboy-Enhanced-Firmware-m5stack-cardputer-/HEAD/stereo_tv_border.png -------------------------------------------------------------------------------- /stereo_tv_border_CC_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-PauI/Gameboy-Enhanced-Firmware-m5stack-cardputer-/HEAD/stereo_tv_border_CC_license.txt --------------------------------------------------------------------------------