├── 1964.sln ├── 1964.suo ├── 1964.vcproj ├── 1964ini.c ├── 1964ini.h ├── DbgPrint.h ├── DebugR4300i.c ├── FPU.c ├── GC.cfg ├── Globals.h ├── LICENSE ├── R4300i.c ├── README.md ├── Readme-HOW-TO-COMPILE.txt ├── Tlb.c ├── cheatcode.c ├── cheatcode.h ├── compiler.c ├── compiler.h ├── debug_option.c ├── debug_option.h ├── dma.c ├── dma.h ├── dynaRec ├── Analyze.c ├── OpcodeDebugger.c ├── dynaBranch.h ├── dynaCOP1.c ├── dynaCOP1.h ├── dynaCPU.c ├── dynaCPU.h ├── dynaCPU_defines.h ├── dynaHelper.h ├── dynaLog.c ├── dynaLog.h ├── dynaRec.h ├── opcodeDebugger.h ├── regcache.c ├── regcache.h ├── vssver.scc ├── x86.c └── x86.h ├── emulator.c ├── emulator.h ├── fileio.c ├── fileio.h ├── gamesave.c ├── gamesave.h ├── globals.c ├── hardware.h ├── hle.c ├── hle.h ├── iPIF.c ├── iPIF.h ├── interrupt.c ├── interrupt.h ├── memory.c ├── memory.h ├── memory2.c ├── n64rcp.c ├── n64rcp.h ├── plugins.h ├── profiler.c ├── r4300i.h ├── romlist.c ├── romlist.h ├── timer.c ├── timer.h ├── tooltips.c ├── win32 ├── 1964.bmp ├── DLL_Rsp.c ├── DLL_Rsp.h ├── Dll_Audio.c ├── Dll_Audio.h ├── Dll_Input.c ├── Dll_Input.h ├── Dll_Video.c ├── Dll_Video.h ├── Thumbs.db ├── Wingui.c ├── audio.bmp ├── icon2.ico ├── input.bmp ├── registry.c ├── registry.h ├── resource.h ├── resource.hm ├── toolbar1.bmp ├── video.bmp ├── windebug.c ├── windebug.h ├── wingui.h ├── wingui.rc └── wingui2.c └── zlib ├── ioapi.h ├── readme.txt ├── unzip.h ├── vssver.scc ├── zconf.h ├── zip.h ├── zlib.h └── zlib.lib /1964.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/1964.sln -------------------------------------------------------------------------------- /1964.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/1964.suo -------------------------------------------------------------------------------- /1964.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/1964.vcproj -------------------------------------------------------------------------------- /1964ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/1964ini.c -------------------------------------------------------------------------------- /1964ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/1964ini.h -------------------------------------------------------------------------------- /DbgPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/DbgPrint.h -------------------------------------------------------------------------------- /DebugR4300i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/DebugR4300i.c -------------------------------------------------------------------------------- /FPU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/FPU.c -------------------------------------------------------------------------------- /GC.cfg: -------------------------------------------------------------------------------- 1 | -no-cmt_add_gc_tag- -------------------------------------------------------------------------------- /Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/Globals.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/LICENSE -------------------------------------------------------------------------------- /R4300i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/R4300i.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/README.md -------------------------------------------------------------------------------- /Readme-HOW-TO-COMPILE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/Readme-HOW-TO-COMPILE.txt -------------------------------------------------------------------------------- /Tlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/Tlb.c -------------------------------------------------------------------------------- /cheatcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/cheatcode.c -------------------------------------------------------------------------------- /cheatcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/cheatcode.h -------------------------------------------------------------------------------- /compiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/compiler.c -------------------------------------------------------------------------------- /compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/compiler.h -------------------------------------------------------------------------------- /debug_option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/debug_option.c -------------------------------------------------------------------------------- /debug_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/debug_option.h -------------------------------------------------------------------------------- /dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dma.c -------------------------------------------------------------------------------- /dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dma.h -------------------------------------------------------------------------------- /dynaRec/Analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/Analyze.c -------------------------------------------------------------------------------- /dynaRec/OpcodeDebugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/OpcodeDebugger.c -------------------------------------------------------------------------------- /dynaRec/dynaBranch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/dynaBranch.h -------------------------------------------------------------------------------- /dynaRec/dynaCOP1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/dynaCOP1.c -------------------------------------------------------------------------------- /dynaRec/dynaCOP1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/dynaCOP1.h -------------------------------------------------------------------------------- /dynaRec/dynaCPU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/dynaCPU.c -------------------------------------------------------------------------------- /dynaRec/dynaCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/dynaCPU.h -------------------------------------------------------------------------------- /dynaRec/dynaCPU_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/dynaCPU_defines.h -------------------------------------------------------------------------------- /dynaRec/dynaHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/dynaHelper.h -------------------------------------------------------------------------------- /dynaRec/dynaLog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/dynaLog.c -------------------------------------------------------------------------------- /dynaRec/dynaLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/dynaLog.h -------------------------------------------------------------------------------- /dynaRec/dynaRec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/dynaRec.h -------------------------------------------------------------------------------- /dynaRec/opcodeDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/opcodeDebugger.h -------------------------------------------------------------------------------- /dynaRec/regcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/regcache.c -------------------------------------------------------------------------------- /dynaRec/regcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/regcache.h -------------------------------------------------------------------------------- /dynaRec/vssver.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/vssver.scc -------------------------------------------------------------------------------- /dynaRec/x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/x86.c -------------------------------------------------------------------------------- /dynaRec/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/dynaRec/x86.h -------------------------------------------------------------------------------- /emulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/emulator.c -------------------------------------------------------------------------------- /emulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/emulator.h -------------------------------------------------------------------------------- /fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/fileio.c -------------------------------------------------------------------------------- /fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/fileio.h -------------------------------------------------------------------------------- /gamesave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/gamesave.c -------------------------------------------------------------------------------- /gamesave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/gamesave.h -------------------------------------------------------------------------------- /globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/globals.c -------------------------------------------------------------------------------- /hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/hardware.h -------------------------------------------------------------------------------- /hle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/hle.c -------------------------------------------------------------------------------- /hle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/hle.h -------------------------------------------------------------------------------- /iPIF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/iPIF.c -------------------------------------------------------------------------------- /iPIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/iPIF.h -------------------------------------------------------------------------------- /interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/interrupt.c -------------------------------------------------------------------------------- /interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/interrupt.h -------------------------------------------------------------------------------- /memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/memory.c -------------------------------------------------------------------------------- /memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/memory.h -------------------------------------------------------------------------------- /memory2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/memory2.c -------------------------------------------------------------------------------- /n64rcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/n64rcp.c -------------------------------------------------------------------------------- /n64rcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/n64rcp.h -------------------------------------------------------------------------------- /plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/plugins.h -------------------------------------------------------------------------------- /profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/profiler.c -------------------------------------------------------------------------------- /r4300i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/r4300i.h -------------------------------------------------------------------------------- /romlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/romlist.c -------------------------------------------------------------------------------- /romlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/romlist.h -------------------------------------------------------------------------------- /timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/timer.c -------------------------------------------------------------------------------- /timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/timer.h -------------------------------------------------------------------------------- /tooltips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/tooltips.c -------------------------------------------------------------------------------- /win32/1964.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/1964.bmp -------------------------------------------------------------------------------- /win32/DLL_Rsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/DLL_Rsp.c -------------------------------------------------------------------------------- /win32/DLL_Rsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/DLL_Rsp.h -------------------------------------------------------------------------------- /win32/Dll_Audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/Dll_Audio.c -------------------------------------------------------------------------------- /win32/Dll_Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/Dll_Audio.h -------------------------------------------------------------------------------- /win32/Dll_Input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/Dll_Input.c -------------------------------------------------------------------------------- /win32/Dll_Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/Dll_Input.h -------------------------------------------------------------------------------- /win32/Dll_Video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/Dll_Video.c -------------------------------------------------------------------------------- /win32/Dll_Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/Dll_Video.h -------------------------------------------------------------------------------- /win32/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/Thumbs.db -------------------------------------------------------------------------------- /win32/Wingui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/Wingui.c -------------------------------------------------------------------------------- /win32/audio.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/audio.bmp -------------------------------------------------------------------------------- /win32/icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/icon2.ico -------------------------------------------------------------------------------- /win32/input.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/input.bmp -------------------------------------------------------------------------------- /win32/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/registry.c -------------------------------------------------------------------------------- /win32/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/registry.h -------------------------------------------------------------------------------- /win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/resource.h -------------------------------------------------------------------------------- /win32/resource.hm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/resource.hm -------------------------------------------------------------------------------- /win32/toolbar1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/toolbar1.bmp -------------------------------------------------------------------------------- /win32/video.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/video.bmp -------------------------------------------------------------------------------- /win32/windebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/windebug.c -------------------------------------------------------------------------------- /win32/windebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/windebug.h -------------------------------------------------------------------------------- /win32/wingui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/wingui.h -------------------------------------------------------------------------------- /win32/wingui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/wingui.rc -------------------------------------------------------------------------------- /win32/wingui2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/win32/wingui2.c -------------------------------------------------------------------------------- /zlib/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/zlib/ioapi.h -------------------------------------------------------------------------------- /zlib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/zlib/readme.txt -------------------------------------------------------------------------------- /zlib/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/zlib/unzip.h -------------------------------------------------------------------------------- /zlib/vssver.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/zlib/vssver.scc -------------------------------------------------------------------------------- /zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/zlib/zconf.h -------------------------------------------------------------------------------- /zlib/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/zlib/zip.h -------------------------------------------------------------------------------- /zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/zlib/zlib.h -------------------------------------------------------------------------------- /zlib/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graslu/1964GEPD/HEAD/zlib/zlib.lib --------------------------------------------------------------------------------