├── .gitignore ├── LICENSE ├── Makefile ├── Makefile_nitrofs ├── README.md ├── arm7 ├── Makefile └── source │ ├── dsp.c │ ├── dsp.h │ ├── dspMixer.s │ ├── helper.h │ ├── helper.s │ ├── main.c │ ├── mixrate.h │ ├── spc700.h │ ├── spc700.inc │ ├── spc700.s │ └── spc700io.c ├── arm9 ├── Makefile └── source │ ├── cpu.h │ ├── cpu.inc │ ├── cpu.s │ ├── dma.c │ ├── lolsnes_screen.h │ ├── lolsnes_screen.s │ ├── main.c │ ├── mem_io.s │ ├── memory.c │ ├── memory.h │ ├── ppu.c │ ├── ppu.h │ ├── ppu_prio.h │ └── rom.c ├── clean.bat ├── common └── ipc.h └── lolsnes.bmp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile_nitrofs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/Makefile_nitrofs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/README.md -------------------------------------------------------------------------------- /arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm7/Makefile -------------------------------------------------------------------------------- /arm7/source/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm7/source/dsp.c -------------------------------------------------------------------------------- /arm7/source/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm7/source/dsp.h -------------------------------------------------------------------------------- /arm7/source/dspMixer.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm7/source/dspMixer.s -------------------------------------------------------------------------------- /arm7/source/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm7/source/helper.h -------------------------------------------------------------------------------- /arm7/source/helper.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm7/source/helper.s -------------------------------------------------------------------------------- /arm7/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm7/source/main.c -------------------------------------------------------------------------------- /arm7/source/mixrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm7/source/mixrate.h -------------------------------------------------------------------------------- /arm7/source/spc700.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm7/source/spc700.h -------------------------------------------------------------------------------- /arm7/source/spc700.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm7/source/spc700.inc -------------------------------------------------------------------------------- /arm7/source/spc700.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm7/source/spc700.s -------------------------------------------------------------------------------- /arm7/source/spc700io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm7/source/spc700io.c -------------------------------------------------------------------------------- /arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm9/Makefile -------------------------------------------------------------------------------- /arm9/source/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm9/source/cpu.h -------------------------------------------------------------------------------- /arm9/source/cpu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm9/source/cpu.inc -------------------------------------------------------------------------------- /arm9/source/cpu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm9/source/cpu.s -------------------------------------------------------------------------------- /arm9/source/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm9/source/dma.c -------------------------------------------------------------------------------- /arm9/source/lolsnes_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm9/source/lolsnes_screen.h -------------------------------------------------------------------------------- /arm9/source/lolsnes_screen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm9/source/lolsnes_screen.s -------------------------------------------------------------------------------- /arm9/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm9/source/main.c -------------------------------------------------------------------------------- /arm9/source/mem_io.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm9/source/mem_io.s -------------------------------------------------------------------------------- /arm9/source/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm9/source/memory.c -------------------------------------------------------------------------------- /arm9/source/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm9/source/memory.h -------------------------------------------------------------------------------- /arm9/source/ppu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm9/source/ppu.c -------------------------------------------------------------------------------- /arm9/source/ppu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm9/source/ppu.h -------------------------------------------------------------------------------- /arm9/source/ppu_prio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm9/source/ppu_prio.h -------------------------------------------------------------------------------- /arm9/source/rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/arm9/source/rom.c -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- 1 | make clean 2 | pause -------------------------------------------------------------------------------- /common/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/common/ipc.h -------------------------------------------------------------------------------- /lolsnes.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arisotura/lolSnes/HEAD/lolsnes.bmp --------------------------------------------------------------------------------