├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── cpu.cpp ├── cpu.h ├── espeon.cpp ├── espeon.h ├── espeon.ino ├── firmwares ├── Espeon │ ├── boot_app0_0xe000.bin │ ├── bootloader_0x1000.bin │ └── partitions_espeon_0x8000.bin ├── espeon.csv └── m5burner.json ├── gbborder.jpg ├── gbfiles.h ├── interrupt.cpp ├── interrupt.h ├── lcd.cpp ├── lcd.h ├── logo ├── espeon_dmg.png ├── espeon_dmg.xcf ├── espeon_dmg_small.png ├── espeon_logo.png └── espeon_logo.xcf ├── makeborder.bat ├── mbc.cpp ├── mbc.h ├── mem.cpp ├── mem.h ├── menu.cpp ├── menu.h ├── rom.cpp ├── rom.h ├── rom2h.bat ├── timer.cpp └── timer.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/README.md -------------------------------------------------------------------------------- /cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/cpu.cpp -------------------------------------------------------------------------------- /cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/cpu.h -------------------------------------------------------------------------------- /espeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/espeon.cpp -------------------------------------------------------------------------------- /espeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/espeon.h -------------------------------------------------------------------------------- /espeon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/espeon.ino -------------------------------------------------------------------------------- /firmwares/Espeon/boot_app0_0xe000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/firmwares/Espeon/boot_app0_0xe000.bin -------------------------------------------------------------------------------- /firmwares/Espeon/bootloader_0x1000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/firmwares/Espeon/bootloader_0x1000.bin -------------------------------------------------------------------------------- /firmwares/Espeon/partitions_espeon_0x8000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/firmwares/Espeon/partitions_espeon_0x8000.bin -------------------------------------------------------------------------------- /firmwares/espeon.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/firmwares/espeon.csv -------------------------------------------------------------------------------- /firmwares/m5burner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/firmwares/m5burner.json -------------------------------------------------------------------------------- /gbborder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/gbborder.jpg -------------------------------------------------------------------------------- /gbfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/gbfiles.h -------------------------------------------------------------------------------- /interrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/interrupt.cpp -------------------------------------------------------------------------------- /interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/interrupt.h -------------------------------------------------------------------------------- /lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/lcd.cpp -------------------------------------------------------------------------------- /lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/lcd.h -------------------------------------------------------------------------------- /logo/espeon_dmg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/logo/espeon_dmg.png -------------------------------------------------------------------------------- /logo/espeon_dmg.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/logo/espeon_dmg.xcf -------------------------------------------------------------------------------- /logo/espeon_dmg_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/logo/espeon_dmg_small.png -------------------------------------------------------------------------------- /logo/espeon_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/logo/espeon_logo.png -------------------------------------------------------------------------------- /logo/espeon_logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/logo/espeon_logo.xcf -------------------------------------------------------------------------------- /makeborder.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/makeborder.bat -------------------------------------------------------------------------------- /mbc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/mbc.cpp -------------------------------------------------------------------------------- /mbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/mbc.h -------------------------------------------------------------------------------- /mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/mem.cpp -------------------------------------------------------------------------------- /mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/mem.h -------------------------------------------------------------------------------- /menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/menu.cpp -------------------------------------------------------------------------------- /menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/menu.h -------------------------------------------------------------------------------- /rom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/rom.cpp -------------------------------------------------------------------------------- /rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/rom.h -------------------------------------------------------------------------------- /rom2h.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/rom2h.bat -------------------------------------------------------------------------------- /timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/timer.cpp -------------------------------------------------------------------------------- /timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuzaki-MrL/Espeon/HEAD/timer.h --------------------------------------------------------------------------------