├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── bugs.md ├── main.c ├── resources ├── Info.plist ├── PkgInfo ├── appicon.icns ├── win.rc └── winicon.ico ├── snes ├── apu.c ├── apu.h ├── cart.c ├── cart.h ├── cpu.c ├── cpu.h ├── dma.c ├── dma.h ├── dsp.c ├── dsp.h ├── input.c ├── input.h ├── ppu.c ├── ppu.h ├── snes.c ├── snes.h ├── snes_other.c ├── spc.c ├── spc.h ├── statehandler.c └── statehandler.h ├── tracing.c ├── tracing.h └── zip ├── miniz.h ├── zip.c └── zip.h /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/README.md -------------------------------------------------------------------------------- /bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/bugs.md -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/main.c -------------------------------------------------------------------------------- /resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/resources/Info.plist -------------------------------------------------------------------------------- /resources/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /resources/appicon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/resources/appicon.icns -------------------------------------------------------------------------------- /resources/win.rc: -------------------------------------------------------------------------------- 1 | 20 ICON "resources/winicon.ico" 2 | -------------------------------------------------------------------------------- /resources/winicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/resources/winicon.ico -------------------------------------------------------------------------------- /snes/apu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/apu.c -------------------------------------------------------------------------------- /snes/apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/apu.h -------------------------------------------------------------------------------- /snes/cart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/cart.c -------------------------------------------------------------------------------- /snes/cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/cart.h -------------------------------------------------------------------------------- /snes/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/cpu.c -------------------------------------------------------------------------------- /snes/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/cpu.h -------------------------------------------------------------------------------- /snes/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/dma.c -------------------------------------------------------------------------------- /snes/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/dma.h -------------------------------------------------------------------------------- /snes/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/dsp.c -------------------------------------------------------------------------------- /snes/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/dsp.h -------------------------------------------------------------------------------- /snes/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/input.c -------------------------------------------------------------------------------- /snes/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/input.h -------------------------------------------------------------------------------- /snes/ppu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/ppu.c -------------------------------------------------------------------------------- /snes/ppu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/ppu.h -------------------------------------------------------------------------------- /snes/snes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/snes.c -------------------------------------------------------------------------------- /snes/snes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/snes.h -------------------------------------------------------------------------------- /snes/snes_other.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/snes_other.c -------------------------------------------------------------------------------- /snes/spc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/spc.c -------------------------------------------------------------------------------- /snes/spc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/spc.h -------------------------------------------------------------------------------- /snes/statehandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/statehandler.c -------------------------------------------------------------------------------- /snes/statehandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/snes/statehandler.h -------------------------------------------------------------------------------- /tracing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/tracing.c -------------------------------------------------------------------------------- /tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/tracing.h -------------------------------------------------------------------------------- /zip/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/zip/miniz.h -------------------------------------------------------------------------------- /zip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/zip/zip.c -------------------------------------------------------------------------------- /zip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelo-wf/LakeSnes/HEAD/zip/zip.h --------------------------------------------------------------------------------