├── .editorconfig ├── .gitattributes ├── .gitignore ├── About.txt ├── BreakPoints.c ├── BreakPoints.h ├── CPU Log.c ├── CPU Log.h ├── Cheat.c ├── CheatSearch.c ├── CheatSearch.h ├── CheatSearch_Dev.c ├── CheatSearch_Dev.h ├── CheatSearch_Input.c ├── CheatSearch_Input.h ├── CheatSearch_Search.c ├── CheatSearch_Search.h ├── Cheats.h ├── Cheats_Preprocessor.c ├── Cheats_Preprocessor.h ├── Compression ├── adler32.c ├── compress.c ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── gzclose.c ├── gzguts.h ├── gzlib.c ├── gzread.c ├── gzwrite.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── ioapi.c ├── ioapi.h ├── trees.c ├── trees.h ├── uncompr.c ├── unzip.c ├── unzip.h ├── zconf.h ├── zip.c ├── zip.h ├── zlib.h ├── zlibstat.lib ├── zutil.c └── zutil.h ├── Config ├── Jabo's Direct3D8 1.7.0.47a Hide Advance Settings.reg ├── Jabo's Direct3D8 1.7.0.47a Unhide Advance Settings.reg ├── Jabo.ini ├── Project64.cdb ├── Project64.rdi └── Project64.rds ├── Cpu.c ├── Cpu.h ├── Debugger.h ├── Dma.c ├── Dma.h ├── Eeprom.c ├── Eeprom.h ├── EmulateAI.c ├── EmulateAI.h ├── Exception.c ├── Exception.h ├── FileHandler.cpp ├── FileHandler.h ├── FlashRam.c ├── Flashram.h ├── HTMLHELP.H ├── Interpreter CPU.c ├── Interpreter CPU.h ├── Interpreter Ops.c ├── Interpreter Ops.h ├── Language.cpp ├── Language.h ├── Logging.c ├── Logging.h ├── MEMPAK.H ├── Main.c ├── Main.h ├── Mapping.c ├── Mapping.h ├── MemDump.c ├── MemDump.h ├── MemTest.cpp ├── MemTest.h ├── Memory.c ├── Memory.h ├── Mempak.c ├── OpCode.h ├── PJ64.BMP ├── PJ64.ICO ├── PJ64.rc ├── PJ64_2.bmp ├── PJ64_3.bmp ├── PJ64_Cheat.rc ├── Pif.c ├── Pif.h ├── Plugin.c ├── Plugin.h ├── Profiling.c ├── Profiling.h ├── Project64.sln ├── Project64.vcxproj ├── Project64.vcxproj.filters ├── README.md ├── Real-Time Clock.c ├── Real-Time Clock.h ├── Recompiler CPU.c ├── Recompiler CPU.h ├── Recompiler Fpu Ops.c ├── Recompiler Ops.c ├── Recompiler Ops.h ├── Registers.c ├── Registers.h ├── Rom.c ├── Rom.h ├── RomBrowser.cpp ├── RomBrowser.h ├── RomTools_Common.cpp ├── RomTools_Common.h ├── SessionMemBookmarks.h ├── Sessions.cpp ├── Sessions.h ├── Settings Api.c ├── Settings Api.h ├── Settings Common Defines.h ├── Settings.c ├── Settings.h ├── Sram.c ├── Sram.h ├── Sync CPU.c ├── Sync CPU.h ├── TLB Display.c ├── Tlb.c ├── Tlb.h ├── Types.h ├── WatchPoints.cpp ├── WatchPoints.h ├── Win32Timer.c ├── Win32Timer.h ├── X86.c ├── X86.h ├── cbor-lite ├── COPYRIGHT.md ├── codec-fp.h └── codec.h ├── left.ico ├── main2.cpp ├── n64_cic_nus_6105.c ├── n64_cic_nus_6105.h ├── r4300i Commands.c ├── r4300i Commands.h ├── r4300i Memory.c ├── r4300i Memory.h ├── r4300i Registers.c ├── r4300i Registers.h ├── resource.h ├── resource_cheat.h ├── right.ico ├── tlb Display.h ├── tri-state.bmp ├── x86 fpu.c └── xxhash64.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /About.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/About.txt -------------------------------------------------------------------------------- /BreakPoints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/BreakPoints.c -------------------------------------------------------------------------------- /BreakPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/BreakPoints.h -------------------------------------------------------------------------------- /CPU Log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/CPU Log.c -------------------------------------------------------------------------------- /CPU Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/CPU Log.h -------------------------------------------------------------------------------- /Cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Cheat.c -------------------------------------------------------------------------------- /CheatSearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/CheatSearch.c -------------------------------------------------------------------------------- /CheatSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/CheatSearch.h -------------------------------------------------------------------------------- /CheatSearch_Dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/CheatSearch_Dev.c -------------------------------------------------------------------------------- /CheatSearch_Dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/CheatSearch_Dev.h -------------------------------------------------------------------------------- /CheatSearch_Input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/CheatSearch_Input.c -------------------------------------------------------------------------------- /CheatSearch_Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/CheatSearch_Input.h -------------------------------------------------------------------------------- /CheatSearch_Search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/CheatSearch_Search.c -------------------------------------------------------------------------------- /CheatSearch_Search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/CheatSearch_Search.h -------------------------------------------------------------------------------- /Cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Cheats.h -------------------------------------------------------------------------------- /Cheats_Preprocessor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Cheats_Preprocessor.c -------------------------------------------------------------------------------- /Cheats_Preprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Cheats_Preprocessor.h -------------------------------------------------------------------------------- /Compression/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/adler32.c -------------------------------------------------------------------------------- /Compression/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/compress.c -------------------------------------------------------------------------------- /Compression/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/crc32.c -------------------------------------------------------------------------------- /Compression/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/crc32.h -------------------------------------------------------------------------------- /Compression/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/deflate.c -------------------------------------------------------------------------------- /Compression/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/deflate.h -------------------------------------------------------------------------------- /Compression/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/gzclose.c -------------------------------------------------------------------------------- /Compression/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/gzguts.h -------------------------------------------------------------------------------- /Compression/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/gzlib.c -------------------------------------------------------------------------------- /Compression/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/gzread.c -------------------------------------------------------------------------------- /Compression/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/gzwrite.c -------------------------------------------------------------------------------- /Compression/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/infback.c -------------------------------------------------------------------------------- /Compression/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/inffast.c -------------------------------------------------------------------------------- /Compression/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/inffast.h -------------------------------------------------------------------------------- /Compression/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/inffixed.h -------------------------------------------------------------------------------- /Compression/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/inflate.c -------------------------------------------------------------------------------- /Compression/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/inflate.h -------------------------------------------------------------------------------- /Compression/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/inftrees.c -------------------------------------------------------------------------------- /Compression/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/inftrees.h -------------------------------------------------------------------------------- /Compression/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/ioapi.c -------------------------------------------------------------------------------- /Compression/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/ioapi.h -------------------------------------------------------------------------------- /Compression/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/trees.c -------------------------------------------------------------------------------- /Compression/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/trees.h -------------------------------------------------------------------------------- /Compression/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/uncompr.c -------------------------------------------------------------------------------- /Compression/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/unzip.c -------------------------------------------------------------------------------- /Compression/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/unzip.h -------------------------------------------------------------------------------- /Compression/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/zconf.h -------------------------------------------------------------------------------- /Compression/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/zip.c -------------------------------------------------------------------------------- /Compression/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/zip.h -------------------------------------------------------------------------------- /Compression/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/zlib.h -------------------------------------------------------------------------------- /Compression/zlibstat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/zlibstat.lib -------------------------------------------------------------------------------- /Compression/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/zutil.c -------------------------------------------------------------------------------- /Compression/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Compression/zutil.h -------------------------------------------------------------------------------- /Config/Jabo's Direct3D8 1.7.0.47a Hide Advance Settings.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Config/Jabo's Direct3D8 1.7.0.47a Hide Advance Settings.reg -------------------------------------------------------------------------------- /Config/Jabo's Direct3D8 1.7.0.47a Unhide Advance Settings.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Config/Jabo's Direct3D8 1.7.0.47a Unhide Advance Settings.reg -------------------------------------------------------------------------------- /Config/Jabo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Config/Jabo.ini -------------------------------------------------------------------------------- /Config/Project64.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Config/Project64.cdb -------------------------------------------------------------------------------- /Config/Project64.rdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Config/Project64.rdi -------------------------------------------------------------------------------- /Config/Project64.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Config/Project64.rds -------------------------------------------------------------------------------- /Cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Cpu.c -------------------------------------------------------------------------------- /Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Cpu.h -------------------------------------------------------------------------------- /Debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Debugger.h -------------------------------------------------------------------------------- /Dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Dma.c -------------------------------------------------------------------------------- /Dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Dma.h -------------------------------------------------------------------------------- /Eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Eeprom.c -------------------------------------------------------------------------------- /Eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Eeprom.h -------------------------------------------------------------------------------- /EmulateAI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/EmulateAI.c -------------------------------------------------------------------------------- /EmulateAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/EmulateAI.h -------------------------------------------------------------------------------- /Exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Exception.c -------------------------------------------------------------------------------- /Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Exception.h -------------------------------------------------------------------------------- /FileHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/FileHandler.cpp -------------------------------------------------------------------------------- /FileHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/FileHandler.h -------------------------------------------------------------------------------- /FlashRam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/FlashRam.c -------------------------------------------------------------------------------- /Flashram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Flashram.h -------------------------------------------------------------------------------- /HTMLHELP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/HTMLHELP.H -------------------------------------------------------------------------------- /Interpreter CPU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Interpreter CPU.c -------------------------------------------------------------------------------- /Interpreter CPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Interpreter CPU.h -------------------------------------------------------------------------------- /Interpreter Ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Interpreter Ops.c -------------------------------------------------------------------------------- /Interpreter Ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Interpreter Ops.h -------------------------------------------------------------------------------- /Language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Language.cpp -------------------------------------------------------------------------------- /Language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Language.h -------------------------------------------------------------------------------- /Logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Logging.c -------------------------------------------------------------------------------- /Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Logging.h -------------------------------------------------------------------------------- /MEMPAK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/MEMPAK.H -------------------------------------------------------------------------------- /Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Main.c -------------------------------------------------------------------------------- /Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Main.h -------------------------------------------------------------------------------- /Mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Mapping.c -------------------------------------------------------------------------------- /Mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Mapping.h -------------------------------------------------------------------------------- /MemDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/MemDump.c -------------------------------------------------------------------------------- /MemDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/MemDump.h -------------------------------------------------------------------------------- /MemTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/MemTest.cpp -------------------------------------------------------------------------------- /MemTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/MemTest.h -------------------------------------------------------------------------------- /Memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Memory.c -------------------------------------------------------------------------------- /Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Memory.h -------------------------------------------------------------------------------- /Mempak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Mempak.c -------------------------------------------------------------------------------- /OpCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/OpCode.h -------------------------------------------------------------------------------- /PJ64.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/PJ64.BMP -------------------------------------------------------------------------------- /PJ64.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/PJ64.ICO -------------------------------------------------------------------------------- /PJ64.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/PJ64.rc -------------------------------------------------------------------------------- /PJ64_2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/PJ64_2.bmp -------------------------------------------------------------------------------- /PJ64_3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/PJ64_3.bmp -------------------------------------------------------------------------------- /PJ64_Cheat.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/PJ64_Cheat.rc -------------------------------------------------------------------------------- /Pif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Pif.c -------------------------------------------------------------------------------- /Pif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Pif.h -------------------------------------------------------------------------------- /Plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Plugin.c -------------------------------------------------------------------------------- /Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Plugin.h -------------------------------------------------------------------------------- /Profiling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Profiling.c -------------------------------------------------------------------------------- /Profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Profiling.h -------------------------------------------------------------------------------- /Project64.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Project64.sln -------------------------------------------------------------------------------- /Project64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Project64.vcxproj -------------------------------------------------------------------------------- /Project64.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Project64.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/README.md -------------------------------------------------------------------------------- /Real-Time Clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Real-Time Clock.c -------------------------------------------------------------------------------- /Real-Time Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Real-Time Clock.h -------------------------------------------------------------------------------- /Recompiler CPU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Recompiler CPU.c -------------------------------------------------------------------------------- /Recompiler CPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Recompiler CPU.h -------------------------------------------------------------------------------- /Recompiler Fpu Ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Recompiler Fpu Ops.c -------------------------------------------------------------------------------- /Recompiler Ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Recompiler Ops.c -------------------------------------------------------------------------------- /Recompiler Ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Recompiler Ops.h -------------------------------------------------------------------------------- /Registers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Registers.c -------------------------------------------------------------------------------- /Registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Registers.h -------------------------------------------------------------------------------- /Rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Rom.c -------------------------------------------------------------------------------- /Rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Rom.h -------------------------------------------------------------------------------- /RomBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/RomBrowser.cpp -------------------------------------------------------------------------------- /RomBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/RomBrowser.h -------------------------------------------------------------------------------- /RomTools_Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/RomTools_Common.cpp -------------------------------------------------------------------------------- /RomTools_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/RomTools_Common.h -------------------------------------------------------------------------------- /SessionMemBookmarks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/SessionMemBookmarks.h -------------------------------------------------------------------------------- /Sessions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Sessions.cpp -------------------------------------------------------------------------------- /Sessions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Sessions.h -------------------------------------------------------------------------------- /Settings Api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Settings Api.c -------------------------------------------------------------------------------- /Settings Api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Settings Api.h -------------------------------------------------------------------------------- /Settings Common Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Settings Common Defines.h -------------------------------------------------------------------------------- /Settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Settings.c -------------------------------------------------------------------------------- /Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Settings.h -------------------------------------------------------------------------------- /Sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Sram.c -------------------------------------------------------------------------------- /Sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Sram.h -------------------------------------------------------------------------------- /Sync CPU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Sync CPU.c -------------------------------------------------------------------------------- /Sync CPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Sync CPU.h -------------------------------------------------------------------------------- /TLB Display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/TLB Display.c -------------------------------------------------------------------------------- /Tlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Tlb.c -------------------------------------------------------------------------------- /Tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Tlb.h -------------------------------------------------------------------------------- /Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Types.h -------------------------------------------------------------------------------- /WatchPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/WatchPoints.cpp -------------------------------------------------------------------------------- /WatchPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/WatchPoints.h -------------------------------------------------------------------------------- /Win32Timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Win32Timer.c -------------------------------------------------------------------------------- /Win32Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/Win32Timer.h -------------------------------------------------------------------------------- /X86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/X86.c -------------------------------------------------------------------------------- /X86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/X86.h -------------------------------------------------------------------------------- /cbor-lite/COPYRIGHT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/cbor-lite/COPYRIGHT.md -------------------------------------------------------------------------------- /cbor-lite/codec-fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/cbor-lite/codec-fp.h -------------------------------------------------------------------------------- /cbor-lite/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/cbor-lite/codec.h -------------------------------------------------------------------------------- /left.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/left.ico -------------------------------------------------------------------------------- /main2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/main2.cpp -------------------------------------------------------------------------------- /n64_cic_nus_6105.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/n64_cic_nus_6105.c -------------------------------------------------------------------------------- /n64_cic_nus_6105.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/n64_cic_nus_6105.h -------------------------------------------------------------------------------- /r4300i Commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/r4300i Commands.c -------------------------------------------------------------------------------- /r4300i Commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/r4300i Commands.h -------------------------------------------------------------------------------- /r4300i Memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/r4300i Memory.c -------------------------------------------------------------------------------- /r4300i Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/r4300i Memory.h -------------------------------------------------------------------------------- /r4300i Registers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/r4300i Registers.c -------------------------------------------------------------------------------- /r4300i Registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/r4300i Registers.h -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/resource.h -------------------------------------------------------------------------------- /resource_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/resource_cheat.h -------------------------------------------------------------------------------- /right.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/right.ico -------------------------------------------------------------------------------- /tlb Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/tlb Display.h -------------------------------------------------------------------------------- /tri-state.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/tri-state.bmp -------------------------------------------------------------------------------- /x86 fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/x86 fpu.c -------------------------------------------------------------------------------- /xxhash64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pj64team/Project64-Legacy/HEAD/xxhash64.h --------------------------------------------------------------------------------