├── .gitignore ├── Makefile ├── README.rst ├── components ├── nofrendo-esp32 │ ├── Kconfig.projbuild │ ├── component.mk │ ├── i2c_keyboard.c │ ├── i2c_keyboard.h │ ├── osd.c │ ├── psxcontroller.c │ ├── psxcontroller.h │ ├── spi_lcd.c │ ├── spi_lcd.h │ └── video_audio.c └── nofrendo │ ├── AUTHORS │ ├── bitmap.c │ ├── bitmap.h │ ├── component.mk │ ├── config.c │ ├── cpu │ ├── dis6502.c │ ├── dis6502.h │ ├── nes6502.c │ └── nes6502.h │ ├── event.c │ ├── event.h │ ├── gui.c │ ├── gui.h │ ├── gui_elem.c │ ├── gui_elem.h │ ├── intro.c │ ├── intro.h │ ├── libsnss │ ├── libsnss.c │ └── libsnss.h │ ├── log.c │ ├── log.h │ ├── mappers │ ├── map000.c │ ├── map001.c │ ├── map002.c │ ├── map003.c │ ├── map004.c │ ├── map005.c │ ├── map007.c │ ├── map008.c │ ├── map009.c │ ├── map011.c │ ├── map015.c │ ├── map016.c │ ├── map018.c │ ├── map019.c │ ├── map024.c │ ├── map032.c │ ├── map033.c │ ├── map034.c │ ├── map040.c │ ├── map041.c │ ├── map042.c │ ├── map046.c │ ├── map050.c │ ├── map064.c │ ├── map065.c │ ├── map066.c │ ├── map070.c │ ├── map073.c │ ├── map075.c │ ├── map078.c │ ├── map079.c │ ├── map085.c │ ├── map087.c │ ├── map093.c │ ├── map094.c │ ├── map099.c │ ├── map160.c │ ├── map229.c │ ├── map231.c │ └── mapvrc.c │ ├── memguard.c │ ├── memguard.h │ ├── nes │ ├── mmclist.c │ ├── mmclist.h │ ├── nes.c │ ├── nes.h │ ├── nes_mmc.c │ ├── nes_mmc.h │ ├── nes_pal.c │ ├── nes_pal.h │ ├── nes_ppu.c │ ├── nes_ppu.h │ ├── nes_rom.c │ ├── nes_rom.h │ ├── nesinput.c │ ├── nesinput.h │ ├── nesstate.c │ └── nesstate.h │ ├── nofconfig.h │ ├── nofrendo.c │ ├── nofrendo.h │ ├── noftypes.h │ ├── osd.h │ ├── pcx.c │ ├── pcx.h │ ├── sndhrdw │ ├── fds_snd.c │ ├── fds_snd.h │ ├── mmc5_snd.c │ ├── mmc5_snd.h │ ├── nes_apu.c │ ├── nes_apu.h │ ├── vrcvisnd.c │ └── vrcvisnd.h │ ├── version.h │ ├── vid_drv.c │ └── vid_drv.h ├── firmware ├── BladeBuster.nes ├── firmware.bin └── flash.sh ├── flashrom.sh ├── main ├── component.mk └── main.c ├── partitions.csv ├── sdkconfig └── sdkconfig.old /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | build/ 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/README.rst -------------------------------------------------------------------------------- /components/nofrendo-esp32/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo-esp32/Kconfig.projbuild -------------------------------------------------------------------------------- /components/nofrendo-esp32/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo-esp32/component.mk -------------------------------------------------------------------------------- /components/nofrendo-esp32/i2c_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo-esp32/i2c_keyboard.c -------------------------------------------------------------------------------- /components/nofrendo-esp32/i2c_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo-esp32/i2c_keyboard.h -------------------------------------------------------------------------------- /components/nofrendo-esp32/osd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo-esp32/osd.c -------------------------------------------------------------------------------- /components/nofrendo-esp32/psxcontroller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo-esp32/psxcontroller.c -------------------------------------------------------------------------------- /components/nofrendo-esp32/psxcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo-esp32/psxcontroller.h -------------------------------------------------------------------------------- /components/nofrendo-esp32/spi_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo-esp32/spi_lcd.c -------------------------------------------------------------------------------- /components/nofrendo-esp32/spi_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo-esp32/spi_lcd.h -------------------------------------------------------------------------------- /components/nofrendo-esp32/video_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo-esp32/video_audio.c -------------------------------------------------------------------------------- /components/nofrendo/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/AUTHORS -------------------------------------------------------------------------------- /components/nofrendo/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/bitmap.c -------------------------------------------------------------------------------- /components/nofrendo/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/bitmap.h -------------------------------------------------------------------------------- /components/nofrendo/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/component.mk -------------------------------------------------------------------------------- /components/nofrendo/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/config.c -------------------------------------------------------------------------------- /components/nofrendo/cpu/dis6502.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/cpu/dis6502.c -------------------------------------------------------------------------------- /components/nofrendo/cpu/dis6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/cpu/dis6502.h -------------------------------------------------------------------------------- /components/nofrendo/cpu/nes6502.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/cpu/nes6502.c -------------------------------------------------------------------------------- /components/nofrendo/cpu/nes6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/cpu/nes6502.h -------------------------------------------------------------------------------- /components/nofrendo/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/event.c -------------------------------------------------------------------------------- /components/nofrendo/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/event.h -------------------------------------------------------------------------------- /components/nofrendo/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/gui.c -------------------------------------------------------------------------------- /components/nofrendo/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/gui.h -------------------------------------------------------------------------------- /components/nofrendo/gui_elem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/gui_elem.c -------------------------------------------------------------------------------- /components/nofrendo/gui_elem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/gui_elem.h -------------------------------------------------------------------------------- /components/nofrendo/intro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/intro.c -------------------------------------------------------------------------------- /components/nofrendo/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/intro.h -------------------------------------------------------------------------------- /components/nofrendo/libsnss/libsnss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/libsnss/libsnss.c -------------------------------------------------------------------------------- /components/nofrendo/libsnss/libsnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/libsnss/libsnss.h -------------------------------------------------------------------------------- /components/nofrendo/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/log.c -------------------------------------------------------------------------------- /components/nofrendo/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/log.h -------------------------------------------------------------------------------- /components/nofrendo/mappers/map000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map000.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map001.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map002.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map003.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map004.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map005.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map007.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map007.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map008.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map009.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map009.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map011.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map015.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map015.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map016.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map016.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map018.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map018.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map019.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map019.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map024.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map024.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map032.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map032.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map033.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map033.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map034.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map034.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map040.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map040.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map041.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map041.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map042.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map042.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map046.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map046.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map050.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map064.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map064.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map065.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map065.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map066.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map066.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map070.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map070.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map073.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map073.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map075.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map075.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map078.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map078.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map079.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map079.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map085.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map085.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map087.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map087.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map093.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map093.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map094.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map094.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map099.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map099.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map160.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map229.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map229.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/map231.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/map231.c -------------------------------------------------------------------------------- /components/nofrendo/mappers/mapvrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/mappers/mapvrc.c -------------------------------------------------------------------------------- /components/nofrendo/memguard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/memguard.c -------------------------------------------------------------------------------- /components/nofrendo/memguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/memguard.h -------------------------------------------------------------------------------- /components/nofrendo/nes/mmclist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nes/mmclist.c -------------------------------------------------------------------------------- /components/nofrendo/nes/mmclist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nes/mmclist.h -------------------------------------------------------------------------------- /components/nofrendo/nes/nes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nes/nes.c -------------------------------------------------------------------------------- /components/nofrendo/nes/nes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nes/nes.h -------------------------------------------------------------------------------- /components/nofrendo/nes/nes_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nes/nes_mmc.c -------------------------------------------------------------------------------- /components/nofrendo/nes/nes_mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nes/nes_mmc.h -------------------------------------------------------------------------------- /components/nofrendo/nes/nes_pal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nes/nes_pal.c -------------------------------------------------------------------------------- /components/nofrendo/nes/nes_pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nes/nes_pal.h -------------------------------------------------------------------------------- /components/nofrendo/nes/nes_ppu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nes/nes_ppu.c -------------------------------------------------------------------------------- /components/nofrendo/nes/nes_ppu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nes/nes_ppu.h -------------------------------------------------------------------------------- /components/nofrendo/nes/nes_rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nes/nes_rom.c -------------------------------------------------------------------------------- /components/nofrendo/nes/nes_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nes/nes_rom.h -------------------------------------------------------------------------------- /components/nofrendo/nes/nesinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nes/nesinput.c -------------------------------------------------------------------------------- /components/nofrendo/nes/nesinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nes/nesinput.h -------------------------------------------------------------------------------- /components/nofrendo/nes/nesstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nes/nesstate.c -------------------------------------------------------------------------------- /components/nofrendo/nes/nesstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nes/nesstate.h -------------------------------------------------------------------------------- /components/nofrendo/nofconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nofconfig.h -------------------------------------------------------------------------------- /components/nofrendo/nofrendo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nofrendo.c -------------------------------------------------------------------------------- /components/nofrendo/nofrendo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/nofrendo.h -------------------------------------------------------------------------------- /components/nofrendo/noftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/noftypes.h -------------------------------------------------------------------------------- /components/nofrendo/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/osd.h -------------------------------------------------------------------------------- /components/nofrendo/pcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/pcx.c -------------------------------------------------------------------------------- /components/nofrendo/pcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/pcx.h -------------------------------------------------------------------------------- /components/nofrendo/sndhrdw/fds_snd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/sndhrdw/fds_snd.c -------------------------------------------------------------------------------- /components/nofrendo/sndhrdw/fds_snd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/sndhrdw/fds_snd.h -------------------------------------------------------------------------------- /components/nofrendo/sndhrdw/mmc5_snd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/sndhrdw/mmc5_snd.c -------------------------------------------------------------------------------- /components/nofrendo/sndhrdw/mmc5_snd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/sndhrdw/mmc5_snd.h -------------------------------------------------------------------------------- /components/nofrendo/sndhrdw/nes_apu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/sndhrdw/nes_apu.c -------------------------------------------------------------------------------- /components/nofrendo/sndhrdw/nes_apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/sndhrdw/nes_apu.h -------------------------------------------------------------------------------- /components/nofrendo/sndhrdw/vrcvisnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/sndhrdw/vrcvisnd.c -------------------------------------------------------------------------------- /components/nofrendo/sndhrdw/vrcvisnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/sndhrdw/vrcvisnd.h -------------------------------------------------------------------------------- /components/nofrendo/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/version.h -------------------------------------------------------------------------------- /components/nofrendo/vid_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/vid_drv.c -------------------------------------------------------------------------------- /components/nofrendo/vid_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/components/nofrendo/vid_drv.h -------------------------------------------------------------------------------- /firmware/BladeBuster.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/firmware/BladeBuster.nes -------------------------------------------------------------------------------- /firmware/firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/firmware/firmware.bin -------------------------------------------------------------------------------- /firmware/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/firmware/flash.sh -------------------------------------------------------------------------------- /flashrom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/flashrom.sh -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/main/component.mk -------------------------------------------------------------------------------- /main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/main/main.c -------------------------------------------------------------------------------- /partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/partitions.csv -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/sdkconfig -------------------------------------------------------------------------------- /sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Stack-nesemu/HEAD/sdkconfig.old --------------------------------------------------------------------------------