├── .gitignore ├── Fixes.txt ├── LICENSE ├── README.md ├── bin ├── Debug │ ├── 1964.cht │ ├── Help │ │ └── 1964.chm │ ├── KEYBOARD.cpf │ ├── KailleraClient.dll │ ├── Language │ │ ├── +-+-+=¦s.lng │ │ ├── Brazilian.lng │ │ ├── Danish.lng │ │ ├── Deutsch.lng │ │ ├── English.lng │ │ ├── French.lng │ │ ├── Greek.lng │ │ ├── Italian.lng │ │ ├── Japanese (Alt).lng │ │ ├── Japanese.lng │ │ ├── Lietuviu.lng │ │ ├── Nederlands.lng │ │ ├── Nihongo.lng │ │ ├── Norwegian.lng │ │ ├── Portuguese.lng │ │ ├── Russian.lng │ │ ├── Spanish (Alt).lng │ │ ├── Spanish.lng │ │ ├── Swedish.lng │ │ ├── Ukrainian.lng │ │ ├── polski.lng │ │ ├── port-br.lng │ │ └── readme.txt │ ├── P880.cpf │ ├── ROM_Properties.ini │ ├── RomCache.dat │ ├── Wingman.cpf │ ├── adaptoid.cpf │ ├── logitech_rumblepad.cpf │ ├── msvcp71.dll │ ├── msvcr70.dll │ ├── msvcr71.dll │ ├── plugin │ │ ├── 1964Video1.0.0.ini │ │ └── NRage_DInput8_V2.dll │ ├── save │ │ ├── SCARS-769147F32033C10E.m0 │ │ ├── SCARS-769147F32033C10E.m1 │ │ ├── SCARS-769147F32033C10E.m2 │ │ ├── SCARS-769147F32033C10E.m3 │ │ ├── SUPER MARIO 64-635A2BFF8B022326.eep │ │ └── keepme.txt │ ├── uninstall │ │ ├── Click to Uninstall 1964 for Windows98 WinMe 95.reg │ │ ├── Click to Uninstall 1964 for XP 2000 NT.reg │ │ ├── Remove All RICEDAEDALUS.dll settings & reset to Default.reg │ │ ├── Remove All RICEDAEDALUS.dll settings & reset to DefaultNT.reg │ │ └── readme_uninstall.txt │ └── zlib.dll └── Release │ ├── 1964.cht │ ├── 1964.exe │ ├── Help │ └── 1964.chm │ ├── KEYBOARD.cpf │ ├── KailleraClient.dll │ ├── Language │ ├── +-+-+=¦s.lng │ ├── Brazilian.lng │ ├── Danish.lng │ ├── Deutsch.lng │ ├── English.lng │ ├── French.lng │ ├── Greek.lng │ ├── Italian.lng │ ├── Japanese (Alt).lng │ ├── Japanese.lng │ ├── Lietuviu.lng │ ├── Nederlands.lng │ ├── Nihongo.lng │ ├── Norwegian.lng │ ├── Portuguese.lng │ ├── Russian.lng │ ├── Spanish (Alt).lng │ ├── Spanish.lng │ ├── Swedish.lng │ ├── Ukrainian.lng │ ├── polski.lng │ ├── port-br.lng │ └── readme.txt │ ├── P880.cpf │ ├── ROM_Properties.ini │ ├── Release.zip │ ├── RomCache.dat │ ├── Wingman.cpf │ ├── adaptoid.cpf │ ├── logitech_rumblepad.cpf │ ├── msvcp71.dll │ ├── msvcr70.dll │ ├── msvcr71.dll │ ├── plugin │ ├── 1964Aud.dll │ ├── 1964Input.dll │ ├── 1964Video.dll │ ├── 1964Video.exp │ ├── 1964Video.lib │ ├── 1964Video1.0.0.ini │ ├── NRage_DInput8_V2.dll │ └── No Audio 1964.dll │ ├── save │ └── SUPER MARIO 64-635A2BFF8B022326.eep │ ├── uninstall │ ├── Click to Uninstall 1964 for Windows98 WinMe 95.reg │ ├── Click to Uninstall 1964 for XP 2000 NT.reg │ ├── Remove All RICEDAEDALUS.dll settings & reset to Default.reg │ ├── Remove All RICEDAEDALUS.dll settings & reset to DefaultNT.reg │ └── readme_uninstall.txt │ └── zlib.dll ├── regressions.txt └── src ├── 1964Input ├── 1964Input.cpp ├── 1964Input.rc ├── 1964Input.sln ├── 1964Input.vcproj ├── 1964Input.vcxproj ├── 1964Input.vcxproj.filters ├── Config.cpp ├── Config.h ├── Di.cpp ├── Di.h ├── StdAfx.h ├── controller.h ├── gui.cpp ├── resource.h └── resrc1.h ├── 1964Video ├── 1964Video.sln ├── 1964Video.vcproj ├── 1964Video.vcxproj ├── 1964Video.vcxproj.filters ├── CNvTNTCombiner.cpp ├── CNvTNTCombiner.h ├── CNvTNTDirectXCombiner.cpp ├── CNvTNTDirectXCombiner.h ├── CSortedList.h ├── Combiner.cpp ├── Combiner.h ├── CombinerDefs.h ├── CombinerTable.cpp ├── Config.cpp ├── Config.h ├── ConvertImage.cpp ├── ConvertImage.h ├── ConvertImage16.cpp ├── CritSect.h ├── D3DRender.cpp ├── D3DRender.h ├── D3DRenderExt.cpp ├── DXGraphicsContext.cpp ├── DXGraphicsContext.h ├── Debugger.cpp ├── Debugger.h ├── DecodedMux.cpp ├── DecodedMux.h ├── DeviceBuilder.cpp ├── DeviceBuilder.h ├── DirectXBlender.cpp ├── DirectXBlender.h ├── DirectXCombiner.cpp ├── DirectXCombiner.h ├── DirectXCombinerVariants.cpp ├── DirectXCombinerVariants.h ├── DirectXDecodedMux.cpp ├── DirectXDecodedMux.h ├── DirectXTexture.cpp ├── DirectXTexture.h ├── ExtendedRender.h ├── FrameBuffer.h ├── GeneralCombiner.cpp ├── GeneralCombiner.h ├── GraphicsContext.cpp ├── GraphicsContext.h ├── IColor.h ├── OGLCombiner.cpp ├── OGLCombiner.h ├── OGLCombinerNV.cpp ├── OGLCombinerNV.h ├── OGLCombinerTNT2.cpp ├── OGLCombinerTNT2.h ├── OGLDecodedMux.cpp ├── OGLDecodedMux.h ├── OGLExtCombiner.cpp ├── OGLExtCombiner.h ├── OGLExtRender.cpp ├── OGLExtRender.h ├── OGLGraphicsContext.cpp ├── OGLGraphicsContext.h ├── OGLRender.cpp ├── OGLRender.h ├── OGLRenderExt.cpp ├── OGLTexture.cpp ├── OGLTexture.h ├── RDP_Texture.h ├── RSP_GBI0.h ├── RSP_GBI1.h ├── RSP_GBI2.h ├── RSP_GBI2_ext.h ├── RSP_GBI_Others.h ├── RSP_GBI_Sprite2D.h ├── RSP_Parser.cpp ├── RSP_Parser.h ├── RSP_S2DEX.cpp ├── RSP_S2DEX.h ├── Render.cpp ├── Render.h ├── RenderBase.cpp ├── RenderBase.h ├── RenderExt.cpp ├── Texture.cpp ├── Texture.h ├── TextureFilters.cpp ├── TextureFilters.h ├── TextureFilters_2xsai.cpp ├── TextureFilters_hq2x.cpp ├── TextureFilters_hq2x.h ├── TextureFilters_hq4x.cpp ├── TextureFilters_hq4x.h ├── TextureFilters_lq2x.h ├── TextureManager.cpp ├── TextureManager.h ├── Timing.h ├── UcodeDefs.h ├── Unique.h ├── Video.cpp ├── Video.h ├── Video.rc ├── _BldNum.h ├── blender.cpp ├── blender.h ├── gfx.h ├── glext.h ├── glh_genext.h ├── resource.h ├── stdafx.h ├── typedefs.h ├── ucode.h └── wglext.h ├── 1964VideoBak ├── 1964Video.sln ├── 1964Video.vcproj ├── CNvTNTCombiner.cpp ├── CNvTNTCombiner.h ├── CNvTNTDirectXCombiner.cpp ├── CNvTNTDirectXCombiner.h ├── CSortedList.h ├── Combiner.cpp ├── Combiner.h ├── CombinerDefs.h ├── CombinerTable.cpp ├── Config.cpp ├── Config.h ├── ConvertImage.cpp ├── ConvertImage.h ├── ConvertImage16.cpp ├── CritSect.h ├── D3DRender.cpp ├── D3DRender.h ├── D3DRenderExt.cpp ├── DXGraphicsContext.cpp ├── DXGraphicsContext.h ├── Debugger.cpp ├── Debugger.h ├── DecodedMux.cpp ├── DecodedMux.h ├── DeviceBuilder.cpp ├── DeviceBuilder.h ├── DirectXBlender.cpp ├── DirectXBlender.h ├── DirectXCombiner.cpp ├── DirectXCombiner.h ├── DirectXCombinerVariants.cpp ├── DirectXCombinerVariants.h ├── DirectXDecodedMux.cpp ├── DirectXDecodedMux.h ├── DirectXTexture.cpp ├── DirectXTexture.h ├── ExtendedRender.h ├── FrameBuffer.h ├── GeneralCombiner.cpp ├── GeneralCombiner.h ├── GraphicsContext.cpp ├── GraphicsContext.h ├── IColor.h ├── OGLCombiner.cpp ├── OGLCombiner.h ├── OGLCombinerNV.cpp ├── OGLCombinerNV.h ├── OGLCombinerTNT2.cpp ├── OGLCombinerTNT2.h ├── OGLDecodedMux.cpp ├── OGLDecodedMux.h ├── OGLExtCombiner.cpp ├── OGLExtCombiner.h ├── OGLExtRender.cpp ├── OGLExtRender.h ├── OGLGraphicsContext.cpp ├── OGLGraphicsContext.h ├── OGLRender.cpp ├── OGLRender.h ├── OGLRenderExt.cpp ├── OGLTexture.cpp ├── OGLTexture.h ├── RDP_Texture.h ├── RSP_GBI0.h ├── RSP_GBI1.h ├── RSP_GBI2.h ├── RSP_GBI2_ext.h ├── RSP_GBI_Others.h ├── RSP_GBI_Sprite2D.h ├── RSP_Parser.cpp ├── RSP_Parser.h ├── RSP_S2DEX.cpp ├── RSP_S2DEX.h ├── Render.cpp ├── Render.h ├── RenderBase.cpp ├── RenderBase.h ├── RenderExt.cpp ├── Texture.cpp ├── Texture.h ├── TextureFilters.cpp ├── TextureFilters.h ├── TextureFilters_2xsai.cpp ├── TextureFilters_hq2x.cpp ├── TextureFilters_hq2x.h ├── TextureFilters_hq4x.cpp ├── TextureFilters_hq4x.h ├── TextureFilters_lq2x.h ├── TextureManager.cpp ├── TextureManager.h ├── Timing.h ├── UcodeDefs.h ├── Unique.h ├── Video.cpp ├── Video.h ├── Video.rc ├── _BldNum.h ├── blender.cpp ├── blender.h ├── gfx.h ├── glext.h ├── glh_genext.h ├── resource.h ├── stdafx.h ├── typedefs.h ├── ucode.h └── wglext.h ├── Info.txt ├── Make └── Win │ └── 1964.sln ├── RSP ├── 1964AudioLLE │ ├── Audio.c │ ├── Audio.h │ ├── AudioCode.h │ ├── AudioSpec.h │ ├── Microcode │ │ ├── BanjoMicrocode.c │ │ ├── ConkerMicrocode.c │ │ ├── DK64Microcode.c │ │ ├── DKRMicrocode.c │ │ ├── DrMarioMicrocode.c │ │ ├── FZeroMicrocode.c │ │ ├── GauntletMicrocode.c │ │ ├── GoldenEyeMicrocode.c │ │ ├── MarioKartMicrocode.c │ │ ├── MarioMicrocode.c │ │ ├── Microcode.h │ │ ├── PDMicrocode.c │ │ ├── SmashBrosMicrocode.c │ │ ├── StarFoxMicrocode.c │ │ ├── TestMacros.h │ │ ├── TooieMicrocode.c │ │ ├── YoshiMicrocode.c │ │ ├── ZeldaMMMicrocode.c │ │ ├── ZeldaMicrocode.c │ │ ├── jumptable.h │ │ └── jumptable_boot.h │ ├── main.cpp │ └── make │ │ ├── 1964Audio.rc │ │ ├── 1964audio.sln │ │ ├── 1964audio.vcproj │ │ ├── 1964audio.vcxproj │ │ ├── 1964audio.vcxproj.filters │ │ └── resource.h ├── 1964VideoLLE │ └── VC6 Source │ │ ├── GFX.sln │ │ ├── GFX.vcproj │ │ ├── Gfx.h │ │ └── Main.cpp └── Shared │ ├── Main.c │ ├── execute.c │ ├── isaligned.h │ ├── rsp_macros.h │ ├── rsp_mnemonic.h │ ├── rsp_opcodes.c │ ├── rsp_opcodes.h │ ├── rsp_prefix.h │ └── state.h ├── clean.bat └── core ├── 1964.exe.sln ├── 1964.exe.vcproj ├── 1964.exe.vcxproj ├── 1964.exe.vcxproj.filters ├── 1964ini.h ├── COPYRIGHT.txt ├── Compile.cpp ├── Core.cpp ├── Core.h ├── DbgPrint.h ├── DebugR4300i.cpp ├── FPU.cpp ├── FrameBuffer.cpp ├── FrameBuffer.h ├── Globals.h ├── InterpretedOpcodes.cpp ├── InterpretedOpcodes.h ├── Main.cpp ├── Memory.cpp ├── Memory.h ├── OpcodeMap.h ├── R4300i.cpp ├── R4300i_32bit.cpp ├── Registers.cpp ├── Registers.h ├── State.cpp ├── State.h ├── Tlb.cpp ├── Ultra.h ├── ZLIST.cpp ├── _memory.cpp ├── _memory.h ├── cheatcode.cpp ├── cheatcode.h ├── compiler.cpp ├── compiler.h ├── debug_option.h ├── dma.cpp ├── dma.h ├── dynarec ├── Analyze.cpp ├── OpcodeDebugger.cpp ├── RegcacheNew.cpp ├── dynaBranch.h ├── dynaCOP1.cpp ├── dynaCOP1.h ├── dynaCPU.cpp ├── dynaCPU.h ├── dynaHelper.h ├── dynaLog.cpp ├── dynaLog.h ├── dynaRec.h ├── opcodeDebugger.h ├── regcache.cpp ├── regcache.h ├── regcache_sse_fpu.cpp ├── x86.cpp ├── x86.h ├── xmm.cpp └── xmm.h ├── emulator.cpp ├── emulator.h ├── fileio.cpp ├── fileio.h ├── gamesave.cpp ├── gamesave.h ├── globals.cpp ├── hardware.h ├── hle.h ├── iFpuWithCP1Unusable.cpp ├── iPIF.cpp ├── iPIF.h ├── imagelist.cpp ├── interrupt.cpp ├── interrupt.h ├── kaillera ├── Kaillera.cpp └── Kaillera.h ├── memory2.cpp ├── n64rcp.cpp ├── n64rcp.h ├── netplay-spec.h ├── plugins.h ├── profiler.cpp ├── r4300i.h ├── r4300i_32bit.h ├── romlist.cpp ├── romlist.h ├── stdafx.h ├── timer.cpp ├── timer.h ├── win32 ├── 1964.bmp ├── 1964.exe.manifest ├── 1964ini.cpp ├── DLL_Rsp.cpp ├── DLL_Rsp.h ├── Dll_Audio.cpp ├── Dll_Input.cpp ├── Dll_Input.h ├── Dll_Video.cpp ├── Dll_Video.h ├── N64logo.bmp ├── almost_p.ico ├── audio.bmp ├── bitmap2.bmp ├── bmp00001.bmp ├── icon1.ico ├── icon2.ico ├── input.bmp ├── logo.bmp ├── not_play.ico ├── playable.ico ├── registry.cpp ├── registry.h ├── resource.h ├── rom_open.bmp ├── rsp.bmp ├── toolbar1.bmp ├── toolbar24bit.bmp ├── tooltips.cpp ├── unknown.ico ├── video.bmp ├── windebug.cpp ├── windebug.h ├── wingui.cpp ├── wingui.h ├── wingui.rc └── wingui2.cpp └── zlib ├── ioapi.h ├── readme.txt ├── unzip.h ├── zconf.h ├── zip.h ├── zlib.h └── zlib.lib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/.gitignore -------------------------------------------------------------------------------- /Fixes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/Fixes.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/README.md -------------------------------------------------------------------------------- /bin/Debug/1964.cht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/1964.cht -------------------------------------------------------------------------------- /bin/Debug/Help/1964.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Help/1964.chm -------------------------------------------------------------------------------- /bin/Debug/KEYBOARD.cpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/KEYBOARD.cpf -------------------------------------------------------------------------------- /bin/Debug/KailleraClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/KailleraClient.dll -------------------------------------------------------------------------------- /bin/Debug/Language/+-+-+=¦s.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/+-+-+=¦s.lng -------------------------------------------------------------------------------- /bin/Debug/Language/Brazilian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/Brazilian.lng -------------------------------------------------------------------------------- /bin/Debug/Language/Danish.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/Danish.lng -------------------------------------------------------------------------------- /bin/Debug/Language/Deutsch.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/Deutsch.lng -------------------------------------------------------------------------------- /bin/Debug/Language/English.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/English.lng -------------------------------------------------------------------------------- /bin/Debug/Language/French.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/French.lng -------------------------------------------------------------------------------- /bin/Debug/Language/Greek.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/Greek.lng -------------------------------------------------------------------------------- /bin/Debug/Language/Italian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/Italian.lng -------------------------------------------------------------------------------- /bin/Debug/Language/Japanese (Alt).lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/Japanese (Alt).lng -------------------------------------------------------------------------------- /bin/Debug/Language/Japanese.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/Japanese.lng -------------------------------------------------------------------------------- /bin/Debug/Language/Lietuviu.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/Lietuviu.lng -------------------------------------------------------------------------------- /bin/Debug/Language/Nederlands.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/Nederlands.lng -------------------------------------------------------------------------------- /bin/Debug/Language/Nihongo.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/Nihongo.lng -------------------------------------------------------------------------------- /bin/Debug/Language/Norwegian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/Norwegian.lng -------------------------------------------------------------------------------- /bin/Debug/Language/Portuguese.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/Portuguese.lng -------------------------------------------------------------------------------- /bin/Debug/Language/Russian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/Russian.lng -------------------------------------------------------------------------------- /bin/Debug/Language/Spanish (Alt).lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/Spanish (Alt).lng -------------------------------------------------------------------------------- /bin/Debug/Language/Spanish.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/Spanish.lng -------------------------------------------------------------------------------- /bin/Debug/Language/Swedish.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/Swedish.lng -------------------------------------------------------------------------------- /bin/Debug/Language/Ukrainian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/Ukrainian.lng -------------------------------------------------------------------------------- /bin/Debug/Language/polski.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/polski.lng -------------------------------------------------------------------------------- /bin/Debug/Language/port-br.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/port-br.lng -------------------------------------------------------------------------------- /bin/Debug/Language/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Language/readme.txt -------------------------------------------------------------------------------- /bin/Debug/P880.cpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/P880.cpf -------------------------------------------------------------------------------- /bin/Debug/ROM_Properties.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/ROM_Properties.ini -------------------------------------------------------------------------------- /bin/Debug/RomCache.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/RomCache.dat -------------------------------------------------------------------------------- /bin/Debug/Wingman.cpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/Wingman.cpf -------------------------------------------------------------------------------- /bin/Debug/adaptoid.cpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/adaptoid.cpf -------------------------------------------------------------------------------- /bin/Debug/logitech_rumblepad.cpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/logitech_rumblepad.cpf -------------------------------------------------------------------------------- /bin/Debug/msvcp71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/msvcp71.dll -------------------------------------------------------------------------------- /bin/Debug/msvcr70.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/msvcr70.dll -------------------------------------------------------------------------------- /bin/Debug/msvcr71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/msvcr71.dll -------------------------------------------------------------------------------- /bin/Debug/plugin/1964Video1.0.0.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/plugin/1964Video1.0.0.ini -------------------------------------------------------------------------------- /bin/Debug/plugin/NRage_DInput8_V2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/plugin/NRage_DInput8_V2.dll -------------------------------------------------------------------------------- /bin/Debug/save/SCARS-769147F32033C10E.m0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/save/SCARS-769147F32033C10E.m0 -------------------------------------------------------------------------------- /bin/Debug/save/SCARS-769147F32033C10E.m1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/save/SCARS-769147F32033C10E.m1 -------------------------------------------------------------------------------- /bin/Debug/save/SCARS-769147F32033C10E.m2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/save/SCARS-769147F32033C10E.m2 -------------------------------------------------------------------------------- /bin/Debug/save/SCARS-769147F32033C10E.m3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/save/SCARS-769147F32033C10E.m3 -------------------------------------------------------------------------------- /bin/Debug/save/SUPER MARIO 64-635A2BFF8B022326.eep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/save/SUPER MARIO 64-635A2BFF8B022326.eep -------------------------------------------------------------------------------- /bin/Debug/save/keepme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/Debug/uninstall/Click to Uninstall 1964 for Windows98 WinMe 95.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/uninstall/Click to Uninstall 1964 for Windows98 WinMe 95.reg -------------------------------------------------------------------------------- /bin/Debug/uninstall/Click to Uninstall 1964 for XP 2000 NT.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/uninstall/Click to Uninstall 1964 for XP 2000 NT.reg -------------------------------------------------------------------------------- /bin/Debug/uninstall/Remove All RICEDAEDALUS.dll settings & reset to Default.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/uninstall/Remove All RICEDAEDALUS.dll settings & reset to Default.reg -------------------------------------------------------------------------------- /bin/Debug/uninstall/Remove All RICEDAEDALUS.dll settings & reset to DefaultNT.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/uninstall/Remove All RICEDAEDALUS.dll settings & reset to DefaultNT.reg -------------------------------------------------------------------------------- /bin/Debug/uninstall/readme_uninstall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/uninstall/readme_uninstall.txt -------------------------------------------------------------------------------- /bin/Debug/zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Debug/zlib.dll -------------------------------------------------------------------------------- /bin/Release/1964.cht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/1964.cht -------------------------------------------------------------------------------- /bin/Release/1964.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/1964.exe -------------------------------------------------------------------------------- /bin/Release/Help/1964.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Help/1964.chm -------------------------------------------------------------------------------- /bin/Release/KEYBOARD.cpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/KEYBOARD.cpf -------------------------------------------------------------------------------- /bin/Release/KailleraClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/KailleraClient.dll -------------------------------------------------------------------------------- /bin/Release/Language/+-+-+=¦s.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/+-+-+=¦s.lng -------------------------------------------------------------------------------- /bin/Release/Language/Brazilian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/Brazilian.lng -------------------------------------------------------------------------------- /bin/Release/Language/Danish.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/Danish.lng -------------------------------------------------------------------------------- /bin/Release/Language/Deutsch.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/Deutsch.lng -------------------------------------------------------------------------------- /bin/Release/Language/English.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/English.lng -------------------------------------------------------------------------------- /bin/Release/Language/French.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/French.lng -------------------------------------------------------------------------------- /bin/Release/Language/Greek.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/Greek.lng -------------------------------------------------------------------------------- /bin/Release/Language/Italian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/Italian.lng -------------------------------------------------------------------------------- /bin/Release/Language/Japanese (Alt).lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/Japanese (Alt).lng -------------------------------------------------------------------------------- /bin/Release/Language/Japanese.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/Japanese.lng -------------------------------------------------------------------------------- /bin/Release/Language/Lietuviu.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/Lietuviu.lng -------------------------------------------------------------------------------- /bin/Release/Language/Nederlands.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/Nederlands.lng -------------------------------------------------------------------------------- /bin/Release/Language/Nihongo.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/Nihongo.lng -------------------------------------------------------------------------------- /bin/Release/Language/Norwegian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/Norwegian.lng -------------------------------------------------------------------------------- /bin/Release/Language/Portuguese.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/Portuguese.lng -------------------------------------------------------------------------------- /bin/Release/Language/Russian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/Russian.lng -------------------------------------------------------------------------------- /bin/Release/Language/Spanish (Alt).lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/Spanish (Alt).lng -------------------------------------------------------------------------------- /bin/Release/Language/Spanish.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/Spanish.lng -------------------------------------------------------------------------------- /bin/Release/Language/Swedish.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/Swedish.lng -------------------------------------------------------------------------------- /bin/Release/Language/Ukrainian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/Ukrainian.lng -------------------------------------------------------------------------------- /bin/Release/Language/polski.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/polski.lng -------------------------------------------------------------------------------- /bin/Release/Language/port-br.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/port-br.lng -------------------------------------------------------------------------------- /bin/Release/Language/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Language/readme.txt -------------------------------------------------------------------------------- /bin/Release/P880.cpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/P880.cpf -------------------------------------------------------------------------------- /bin/Release/ROM_Properties.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/ROM_Properties.ini -------------------------------------------------------------------------------- /bin/Release/Release.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Release.zip -------------------------------------------------------------------------------- /bin/Release/RomCache.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/RomCache.dat -------------------------------------------------------------------------------- /bin/Release/Wingman.cpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/Wingman.cpf -------------------------------------------------------------------------------- /bin/Release/adaptoid.cpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/adaptoid.cpf -------------------------------------------------------------------------------- /bin/Release/logitech_rumblepad.cpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/logitech_rumblepad.cpf -------------------------------------------------------------------------------- /bin/Release/msvcp71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/msvcp71.dll -------------------------------------------------------------------------------- /bin/Release/msvcr70.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/msvcr70.dll -------------------------------------------------------------------------------- /bin/Release/msvcr71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/msvcr71.dll -------------------------------------------------------------------------------- /bin/Release/plugin/1964Aud.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/plugin/1964Aud.dll -------------------------------------------------------------------------------- /bin/Release/plugin/1964Input.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/plugin/1964Input.dll -------------------------------------------------------------------------------- /bin/Release/plugin/1964Video.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/plugin/1964Video.dll -------------------------------------------------------------------------------- /bin/Release/plugin/1964Video.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/plugin/1964Video.exp -------------------------------------------------------------------------------- /bin/Release/plugin/1964Video.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/plugin/1964Video.lib -------------------------------------------------------------------------------- /bin/Release/plugin/1964Video1.0.0.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/plugin/1964Video1.0.0.ini -------------------------------------------------------------------------------- /bin/Release/plugin/NRage_DInput8_V2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/plugin/NRage_DInput8_V2.dll -------------------------------------------------------------------------------- /bin/Release/plugin/No Audio 1964.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/plugin/No Audio 1964.dll -------------------------------------------------------------------------------- /bin/Release/save/SUPER MARIO 64-635A2BFF8B022326.eep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/save/SUPER MARIO 64-635A2BFF8B022326.eep -------------------------------------------------------------------------------- /bin/Release/uninstall/Click to Uninstall 1964 for Windows98 WinMe 95.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/uninstall/Click to Uninstall 1964 for Windows98 WinMe 95.reg -------------------------------------------------------------------------------- /bin/Release/uninstall/Click to Uninstall 1964 for XP 2000 NT.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/uninstall/Click to Uninstall 1964 for XP 2000 NT.reg -------------------------------------------------------------------------------- /bin/Release/uninstall/Remove All RICEDAEDALUS.dll settings & reset to Default.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/uninstall/Remove All RICEDAEDALUS.dll settings & reset to Default.reg -------------------------------------------------------------------------------- /bin/Release/uninstall/Remove All RICEDAEDALUS.dll settings & reset to DefaultNT.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/uninstall/Remove All RICEDAEDALUS.dll settings & reset to DefaultNT.reg -------------------------------------------------------------------------------- /bin/Release/uninstall/readme_uninstall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/uninstall/readme_uninstall.txt -------------------------------------------------------------------------------- /bin/Release/zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/bin/Release/zlib.dll -------------------------------------------------------------------------------- /regressions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/regressions.txt -------------------------------------------------------------------------------- /src/1964Input/1964Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Input/1964Input.cpp -------------------------------------------------------------------------------- /src/1964Input/1964Input.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Input/1964Input.rc -------------------------------------------------------------------------------- /src/1964Input/1964Input.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Input/1964Input.sln -------------------------------------------------------------------------------- /src/1964Input/1964Input.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Input/1964Input.vcproj -------------------------------------------------------------------------------- /src/1964Input/1964Input.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Input/1964Input.vcxproj -------------------------------------------------------------------------------- /src/1964Input/1964Input.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Input/1964Input.vcxproj.filters -------------------------------------------------------------------------------- /src/1964Input/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Input/Config.cpp -------------------------------------------------------------------------------- /src/1964Input/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Input/Config.h -------------------------------------------------------------------------------- /src/1964Input/Di.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Input/Di.cpp -------------------------------------------------------------------------------- /src/1964Input/Di.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Input/Di.h -------------------------------------------------------------------------------- /src/1964Input/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Input/StdAfx.h -------------------------------------------------------------------------------- /src/1964Input/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Input/controller.h -------------------------------------------------------------------------------- /src/1964Input/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Input/gui.cpp -------------------------------------------------------------------------------- /src/1964Input/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Input/resource.h -------------------------------------------------------------------------------- /src/1964Input/resrc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Input/resrc1.h -------------------------------------------------------------------------------- /src/1964Video/1964Video.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/1964Video.sln -------------------------------------------------------------------------------- /src/1964Video/1964Video.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/1964Video.vcproj -------------------------------------------------------------------------------- /src/1964Video/1964Video.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/1964Video.vcxproj -------------------------------------------------------------------------------- /src/1964Video/1964Video.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/1964Video.vcxproj.filters -------------------------------------------------------------------------------- /src/1964Video/CNvTNTCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/CNvTNTCombiner.cpp -------------------------------------------------------------------------------- /src/1964Video/CNvTNTCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/CNvTNTCombiner.h -------------------------------------------------------------------------------- /src/1964Video/CNvTNTDirectXCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/CNvTNTDirectXCombiner.cpp -------------------------------------------------------------------------------- /src/1964Video/CNvTNTDirectXCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/CNvTNTDirectXCombiner.h -------------------------------------------------------------------------------- /src/1964Video/CSortedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/CSortedList.h -------------------------------------------------------------------------------- /src/1964Video/Combiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/Combiner.cpp -------------------------------------------------------------------------------- /src/1964Video/Combiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/Combiner.h -------------------------------------------------------------------------------- /src/1964Video/CombinerDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/CombinerDefs.h -------------------------------------------------------------------------------- /src/1964Video/CombinerTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/CombinerTable.cpp -------------------------------------------------------------------------------- /src/1964Video/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/Config.cpp -------------------------------------------------------------------------------- /src/1964Video/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/Config.h -------------------------------------------------------------------------------- /src/1964Video/ConvertImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/ConvertImage.cpp -------------------------------------------------------------------------------- /src/1964Video/ConvertImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/ConvertImage.h -------------------------------------------------------------------------------- /src/1964Video/ConvertImage16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/ConvertImage16.cpp -------------------------------------------------------------------------------- /src/1964Video/CritSect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/CritSect.h -------------------------------------------------------------------------------- /src/1964Video/D3DRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/D3DRender.cpp -------------------------------------------------------------------------------- /src/1964Video/D3DRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/D3DRender.h -------------------------------------------------------------------------------- /src/1964Video/D3DRenderExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/D3DRenderExt.cpp -------------------------------------------------------------------------------- /src/1964Video/DXGraphicsContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/DXGraphicsContext.cpp -------------------------------------------------------------------------------- /src/1964Video/DXGraphicsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/DXGraphicsContext.h -------------------------------------------------------------------------------- /src/1964Video/Debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/Debugger.cpp -------------------------------------------------------------------------------- /src/1964Video/Debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/Debugger.h -------------------------------------------------------------------------------- /src/1964Video/DecodedMux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/DecodedMux.cpp -------------------------------------------------------------------------------- /src/1964Video/DecodedMux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/DecodedMux.h -------------------------------------------------------------------------------- /src/1964Video/DeviceBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/DeviceBuilder.cpp -------------------------------------------------------------------------------- /src/1964Video/DeviceBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/DeviceBuilder.h -------------------------------------------------------------------------------- /src/1964Video/DirectXBlender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/DirectXBlender.cpp -------------------------------------------------------------------------------- /src/1964Video/DirectXBlender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/DirectXBlender.h -------------------------------------------------------------------------------- /src/1964Video/DirectXCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/DirectXCombiner.cpp -------------------------------------------------------------------------------- /src/1964Video/DirectXCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/DirectXCombiner.h -------------------------------------------------------------------------------- /src/1964Video/DirectXCombinerVariants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/DirectXCombinerVariants.cpp -------------------------------------------------------------------------------- /src/1964Video/DirectXCombinerVariants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/DirectXCombinerVariants.h -------------------------------------------------------------------------------- /src/1964Video/DirectXDecodedMux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/DirectXDecodedMux.cpp -------------------------------------------------------------------------------- /src/1964Video/DirectXDecodedMux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/DirectXDecodedMux.h -------------------------------------------------------------------------------- /src/1964Video/DirectXTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/DirectXTexture.cpp -------------------------------------------------------------------------------- /src/1964Video/DirectXTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/DirectXTexture.h -------------------------------------------------------------------------------- /src/1964Video/ExtendedRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/ExtendedRender.h -------------------------------------------------------------------------------- /src/1964Video/FrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/FrameBuffer.h -------------------------------------------------------------------------------- /src/1964Video/GeneralCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/GeneralCombiner.cpp -------------------------------------------------------------------------------- /src/1964Video/GeneralCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/GeneralCombiner.h -------------------------------------------------------------------------------- /src/1964Video/GraphicsContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/GraphicsContext.cpp -------------------------------------------------------------------------------- /src/1964Video/GraphicsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/GraphicsContext.h -------------------------------------------------------------------------------- /src/1964Video/IColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/IColor.h -------------------------------------------------------------------------------- /src/1964Video/OGLCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLCombiner.cpp -------------------------------------------------------------------------------- /src/1964Video/OGLCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLCombiner.h -------------------------------------------------------------------------------- /src/1964Video/OGLCombinerNV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLCombinerNV.cpp -------------------------------------------------------------------------------- /src/1964Video/OGLCombinerNV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLCombinerNV.h -------------------------------------------------------------------------------- /src/1964Video/OGLCombinerTNT2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLCombinerTNT2.cpp -------------------------------------------------------------------------------- /src/1964Video/OGLCombinerTNT2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLCombinerTNT2.h -------------------------------------------------------------------------------- /src/1964Video/OGLDecodedMux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLDecodedMux.cpp -------------------------------------------------------------------------------- /src/1964Video/OGLDecodedMux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLDecodedMux.h -------------------------------------------------------------------------------- /src/1964Video/OGLExtCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLExtCombiner.cpp -------------------------------------------------------------------------------- /src/1964Video/OGLExtCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLExtCombiner.h -------------------------------------------------------------------------------- /src/1964Video/OGLExtRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLExtRender.cpp -------------------------------------------------------------------------------- /src/1964Video/OGLExtRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLExtRender.h -------------------------------------------------------------------------------- /src/1964Video/OGLGraphicsContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLGraphicsContext.cpp -------------------------------------------------------------------------------- /src/1964Video/OGLGraphicsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLGraphicsContext.h -------------------------------------------------------------------------------- /src/1964Video/OGLRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLRender.cpp -------------------------------------------------------------------------------- /src/1964Video/OGLRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLRender.h -------------------------------------------------------------------------------- /src/1964Video/OGLRenderExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLRenderExt.cpp -------------------------------------------------------------------------------- /src/1964Video/OGLTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLTexture.cpp -------------------------------------------------------------------------------- /src/1964Video/OGLTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/OGLTexture.h -------------------------------------------------------------------------------- /src/1964Video/RDP_Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/RDP_Texture.h -------------------------------------------------------------------------------- /src/1964Video/RSP_GBI0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/RSP_GBI0.h -------------------------------------------------------------------------------- /src/1964Video/RSP_GBI1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/RSP_GBI1.h -------------------------------------------------------------------------------- /src/1964Video/RSP_GBI2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/RSP_GBI2.h -------------------------------------------------------------------------------- /src/1964Video/RSP_GBI2_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/RSP_GBI2_ext.h -------------------------------------------------------------------------------- /src/1964Video/RSP_GBI_Others.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/RSP_GBI_Others.h -------------------------------------------------------------------------------- /src/1964Video/RSP_GBI_Sprite2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/RSP_GBI_Sprite2D.h -------------------------------------------------------------------------------- /src/1964Video/RSP_Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/RSP_Parser.cpp -------------------------------------------------------------------------------- /src/1964Video/RSP_Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/RSP_Parser.h -------------------------------------------------------------------------------- /src/1964Video/RSP_S2DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/RSP_S2DEX.cpp -------------------------------------------------------------------------------- /src/1964Video/RSP_S2DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/RSP_S2DEX.h -------------------------------------------------------------------------------- /src/1964Video/Render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/Render.cpp -------------------------------------------------------------------------------- /src/1964Video/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/Render.h -------------------------------------------------------------------------------- /src/1964Video/RenderBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/RenderBase.cpp -------------------------------------------------------------------------------- /src/1964Video/RenderBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/RenderBase.h -------------------------------------------------------------------------------- /src/1964Video/RenderExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/RenderExt.cpp -------------------------------------------------------------------------------- /src/1964Video/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/Texture.cpp -------------------------------------------------------------------------------- /src/1964Video/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/Texture.h -------------------------------------------------------------------------------- /src/1964Video/TextureFilters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/TextureFilters.cpp -------------------------------------------------------------------------------- /src/1964Video/TextureFilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/TextureFilters.h -------------------------------------------------------------------------------- /src/1964Video/TextureFilters_2xsai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/TextureFilters_2xsai.cpp -------------------------------------------------------------------------------- /src/1964Video/TextureFilters_hq2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/TextureFilters_hq2x.cpp -------------------------------------------------------------------------------- /src/1964Video/TextureFilters_hq2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/TextureFilters_hq2x.h -------------------------------------------------------------------------------- /src/1964Video/TextureFilters_hq4x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/TextureFilters_hq4x.cpp -------------------------------------------------------------------------------- /src/1964Video/TextureFilters_hq4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/TextureFilters_hq4x.h -------------------------------------------------------------------------------- /src/1964Video/TextureFilters_lq2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/TextureFilters_lq2x.h -------------------------------------------------------------------------------- /src/1964Video/TextureManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/TextureManager.cpp -------------------------------------------------------------------------------- /src/1964Video/TextureManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/TextureManager.h -------------------------------------------------------------------------------- /src/1964Video/Timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/Timing.h -------------------------------------------------------------------------------- /src/1964Video/UcodeDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/UcodeDefs.h -------------------------------------------------------------------------------- /src/1964Video/Unique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/Unique.h -------------------------------------------------------------------------------- /src/1964Video/Video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/Video.cpp -------------------------------------------------------------------------------- /src/1964Video/Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/Video.h -------------------------------------------------------------------------------- /src/1964Video/Video.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/Video.rc -------------------------------------------------------------------------------- /src/1964Video/_BldNum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/_BldNum.h -------------------------------------------------------------------------------- /src/1964Video/blender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/blender.cpp -------------------------------------------------------------------------------- /src/1964Video/blender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/blender.h -------------------------------------------------------------------------------- /src/1964Video/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/gfx.h -------------------------------------------------------------------------------- /src/1964Video/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/glext.h -------------------------------------------------------------------------------- /src/1964Video/glh_genext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/glh_genext.h -------------------------------------------------------------------------------- /src/1964Video/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/resource.h -------------------------------------------------------------------------------- /src/1964Video/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/stdafx.h -------------------------------------------------------------------------------- /src/1964Video/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/typedefs.h -------------------------------------------------------------------------------- /src/1964Video/ucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/ucode.h -------------------------------------------------------------------------------- /src/1964Video/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964Video/wglext.h -------------------------------------------------------------------------------- /src/1964VideoBak/1964Video.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/1964Video.sln -------------------------------------------------------------------------------- /src/1964VideoBak/1964Video.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/1964Video.vcproj -------------------------------------------------------------------------------- /src/1964VideoBak/CNvTNTCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/CNvTNTCombiner.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/CNvTNTCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/CNvTNTCombiner.h -------------------------------------------------------------------------------- /src/1964VideoBak/CNvTNTDirectXCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/CNvTNTDirectXCombiner.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/CNvTNTDirectXCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/CNvTNTDirectXCombiner.h -------------------------------------------------------------------------------- /src/1964VideoBak/CSortedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/CSortedList.h -------------------------------------------------------------------------------- /src/1964VideoBak/Combiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/Combiner.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/Combiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/Combiner.h -------------------------------------------------------------------------------- /src/1964VideoBak/CombinerDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/CombinerDefs.h -------------------------------------------------------------------------------- /src/1964VideoBak/CombinerTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/CombinerTable.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/Config.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/Config.h -------------------------------------------------------------------------------- /src/1964VideoBak/ConvertImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/ConvertImage.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/ConvertImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/ConvertImage.h -------------------------------------------------------------------------------- /src/1964VideoBak/ConvertImage16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/ConvertImage16.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/CritSect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/CritSect.h -------------------------------------------------------------------------------- /src/1964VideoBak/D3DRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/D3DRender.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/D3DRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/D3DRender.h -------------------------------------------------------------------------------- /src/1964VideoBak/D3DRenderExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/D3DRenderExt.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/DXGraphicsContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/DXGraphicsContext.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/DXGraphicsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/DXGraphicsContext.h -------------------------------------------------------------------------------- /src/1964VideoBak/Debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/Debugger.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/Debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/Debugger.h -------------------------------------------------------------------------------- /src/1964VideoBak/DecodedMux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/DecodedMux.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/DecodedMux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/DecodedMux.h -------------------------------------------------------------------------------- /src/1964VideoBak/DeviceBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/DeviceBuilder.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/DeviceBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/DeviceBuilder.h -------------------------------------------------------------------------------- /src/1964VideoBak/DirectXBlender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/DirectXBlender.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/DirectXBlender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/DirectXBlender.h -------------------------------------------------------------------------------- /src/1964VideoBak/DirectXCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/DirectXCombiner.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/DirectXCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/DirectXCombiner.h -------------------------------------------------------------------------------- /src/1964VideoBak/DirectXCombinerVariants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/DirectXCombinerVariants.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/DirectXCombinerVariants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/DirectXCombinerVariants.h -------------------------------------------------------------------------------- /src/1964VideoBak/DirectXDecodedMux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/DirectXDecodedMux.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/DirectXDecodedMux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/DirectXDecodedMux.h -------------------------------------------------------------------------------- /src/1964VideoBak/DirectXTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/DirectXTexture.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/DirectXTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/DirectXTexture.h -------------------------------------------------------------------------------- /src/1964VideoBak/ExtendedRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/ExtendedRender.h -------------------------------------------------------------------------------- /src/1964VideoBak/FrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/FrameBuffer.h -------------------------------------------------------------------------------- /src/1964VideoBak/GeneralCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/GeneralCombiner.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/GeneralCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/GeneralCombiner.h -------------------------------------------------------------------------------- /src/1964VideoBak/GraphicsContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/GraphicsContext.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/GraphicsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/GraphicsContext.h -------------------------------------------------------------------------------- /src/1964VideoBak/IColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/IColor.h -------------------------------------------------------------------------------- /src/1964VideoBak/OGLCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLCombiner.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/OGLCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLCombiner.h -------------------------------------------------------------------------------- /src/1964VideoBak/OGLCombinerNV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLCombinerNV.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/OGLCombinerNV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLCombinerNV.h -------------------------------------------------------------------------------- /src/1964VideoBak/OGLCombinerTNT2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLCombinerTNT2.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/OGLCombinerTNT2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLCombinerTNT2.h -------------------------------------------------------------------------------- /src/1964VideoBak/OGLDecodedMux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLDecodedMux.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/OGLDecodedMux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLDecodedMux.h -------------------------------------------------------------------------------- /src/1964VideoBak/OGLExtCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLExtCombiner.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/OGLExtCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLExtCombiner.h -------------------------------------------------------------------------------- /src/1964VideoBak/OGLExtRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLExtRender.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/OGLExtRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLExtRender.h -------------------------------------------------------------------------------- /src/1964VideoBak/OGLGraphicsContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLGraphicsContext.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/OGLGraphicsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLGraphicsContext.h -------------------------------------------------------------------------------- /src/1964VideoBak/OGLRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLRender.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/OGLRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLRender.h -------------------------------------------------------------------------------- /src/1964VideoBak/OGLRenderExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLRenderExt.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/OGLTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLTexture.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/OGLTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/OGLTexture.h -------------------------------------------------------------------------------- /src/1964VideoBak/RDP_Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/RDP_Texture.h -------------------------------------------------------------------------------- /src/1964VideoBak/RSP_GBI0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/RSP_GBI0.h -------------------------------------------------------------------------------- /src/1964VideoBak/RSP_GBI1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/RSP_GBI1.h -------------------------------------------------------------------------------- /src/1964VideoBak/RSP_GBI2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/RSP_GBI2.h -------------------------------------------------------------------------------- /src/1964VideoBak/RSP_GBI2_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/RSP_GBI2_ext.h -------------------------------------------------------------------------------- /src/1964VideoBak/RSP_GBI_Others.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/RSP_GBI_Others.h -------------------------------------------------------------------------------- /src/1964VideoBak/RSP_GBI_Sprite2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/RSP_GBI_Sprite2D.h -------------------------------------------------------------------------------- /src/1964VideoBak/RSP_Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/RSP_Parser.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/RSP_Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/RSP_Parser.h -------------------------------------------------------------------------------- /src/1964VideoBak/RSP_S2DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/RSP_S2DEX.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/RSP_S2DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/RSP_S2DEX.h -------------------------------------------------------------------------------- /src/1964VideoBak/Render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/Render.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/Render.h -------------------------------------------------------------------------------- /src/1964VideoBak/RenderBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/RenderBase.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/RenderBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/RenderBase.h -------------------------------------------------------------------------------- /src/1964VideoBak/RenderExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/RenderExt.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/Texture.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/Texture.h -------------------------------------------------------------------------------- /src/1964VideoBak/TextureFilters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/TextureFilters.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/TextureFilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/TextureFilters.h -------------------------------------------------------------------------------- /src/1964VideoBak/TextureFilters_2xsai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/TextureFilters_2xsai.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/TextureFilters_hq2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/TextureFilters_hq2x.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/TextureFilters_hq2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/TextureFilters_hq2x.h -------------------------------------------------------------------------------- /src/1964VideoBak/TextureFilters_hq4x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/TextureFilters_hq4x.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/TextureFilters_hq4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/TextureFilters_hq4x.h -------------------------------------------------------------------------------- /src/1964VideoBak/TextureFilters_lq2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/TextureFilters_lq2x.h -------------------------------------------------------------------------------- /src/1964VideoBak/TextureManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/TextureManager.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/TextureManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/TextureManager.h -------------------------------------------------------------------------------- /src/1964VideoBak/Timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/Timing.h -------------------------------------------------------------------------------- /src/1964VideoBak/UcodeDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/UcodeDefs.h -------------------------------------------------------------------------------- /src/1964VideoBak/Unique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/Unique.h -------------------------------------------------------------------------------- /src/1964VideoBak/Video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/Video.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/Video.h -------------------------------------------------------------------------------- /src/1964VideoBak/Video.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/Video.rc -------------------------------------------------------------------------------- /src/1964VideoBak/_BldNum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/_BldNum.h -------------------------------------------------------------------------------- /src/1964VideoBak/blender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/blender.cpp -------------------------------------------------------------------------------- /src/1964VideoBak/blender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/blender.h -------------------------------------------------------------------------------- /src/1964VideoBak/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/gfx.h -------------------------------------------------------------------------------- /src/1964VideoBak/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/glext.h -------------------------------------------------------------------------------- /src/1964VideoBak/glh_genext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/glh_genext.h -------------------------------------------------------------------------------- /src/1964VideoBak/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/resource.h -------------------------------------------------------------------------------- /src/1964VideoBak/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/stdafx.h -------------------------------------------------------------------------------- /src/1964VideoBak/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/typedefs.h -------------------------------------------------------------------------------- /src/1964VideoBak/ucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/ucode.h -------------------------------------------------------------------------------- /src/1964VideoBak/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/1964VideoBak/wglext.h -------------------------------------------------------------------------------- /src/Info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/Info.txt -------------------------------------------------------------------------------- /src/Make/Win/1964.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/Make/Win/1964.sln -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Audio.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Audio.h -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/AudioCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/AudioCode.h -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/AudioSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/AudioSpec.h -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/BanjoMicrocode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/BanjoMicrocode.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/ConkerMicrocode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/ConkerMicrocode.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/DK64Microcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/DK64Microcode.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/DKRMicrocode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/DKRMicrocode.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/DrMarioMicrocode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/DrMarioMicrocode.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/FZeroMicrocode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/FZeroMicrocode.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/GauntletMicrocode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/GauntletMicrocode.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/GoldenEyeMicrocode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/GoldenEyeMicrocode.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/MarioKartMicrocode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/MarioKartMicrocode.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/MarioMicrocode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/MarioMicrocode.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/Microcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/Microcode.h -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/PDMicrocode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/PDMicrocode.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/SmashBrosMicrocode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/SmashBrosMicrocode.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/StarFoxMicrocode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/StarFoxMicrocode.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/TestMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/TestMacros.h -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/TooieMicrocode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/TooieMicrocode.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/YoshiMicrocode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/YoshiMicrocode.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/ZeldaMMMicrocode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/ZeldaMMMicrocode.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/ZeldaMicrocode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/ZeldaMicrocode.c -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/jumptable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/jumptable.h -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/Microcode/jumptable_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/Microcode/jumptable_boot.h -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/main.cpp -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/make/1964Audio.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/make/1964Audio.rc -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/make/1964audio.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/make/1964audio.sln -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/make/1964audio.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/make/1964audio.vcproj -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/make/1964audio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/make/1964audio.vcxproj -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/make/1964audio.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/make/1964audio.vcxproj.filters -------------------------------------------------------------------------------- /src/RSP/1964AudioLLE/make/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964AudioLLE/make/resource.h -------------------------------------------------------------------------------- /src/RSP/1964VideoLLE/VC6 Source/GFX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964VideoLLE/VC6 Source/GFX.sln -------------------------------------------------------------------------------- /src/RSP/1964VideoLLE/VC6 Source/GFX.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964VideoLLE/VC6 Source/GFX.vcproj -------------------------------------------------------------------------------- /src/RSP/1964VideoLLE/VC6 Source/Gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964VideoLLE/VC6 Source/Gfx.h -------------------------------------------------------------------------------- /src/RSP/1964VideoLLE/VC6 Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/1964VideoLLE/VC6 Source/Main.cpp -------------------------------------------------------------------------------- /src/RSP/Shared/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/Shared/Main.c -------------------------------------------------------------------------------- /src/RSP/Shared/execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/Shared/execute.c -------------------------------------------------------------------------------- /src/RSP/Shared/isaligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/Shared/isaligned.h -------------------------------------------------------------------------------- /src/RSP/Shared/rsp_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/Shared/rsp_macros.h -------------------------------------------------------------------------------- /src/RSP/Shared/rsp_mnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/Shared/rsp_mnemonic.h -------------------------------------------------------------------------------- /src/RSP/Shared/rsp_opcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/Shared/rsp_opcodes.c -------------------------------------------------------------------------------- /src/RSP/Shared/rsp_opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/Shared/rsp_opcodes.h -------------------------------------------------------------------------------- /src/RSP/Shared/rsp_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/Shared/rsp_prefix.h -------------------------------------------------------------------------------- /src/RSP/Shared/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/RSP/Shared/state.h -------------------------------------------------------------------------------- /src/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/clean.bat -------------------------------------------------------------------------------- /src/core/1964.exe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/1964.exe.sln -------------------------------------------------------------------------------- /src/core/1964.exe.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/1964.exe.vcproj -------------------------------------------------------------------------------- /src/core/1964.exe.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/1964.exe.vcxproj -------------------------------------------------------------------------------- /src/core/1964.exe.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/1964.exe.vcxproj.filters -------------------------------------------------------------------------------- /src/core/1964ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/1964ini.h -------------------------------------------------------------------------------- /src/core/COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/COPYRIGHT.txt -------------------------------------------------------------------------------- /src/core/Compile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/Compile.cpp -------------------------------------------------------------------------------- /src/core/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/Core.cpp -------------------------------------------------------------------------------- /src/core/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/Core.h -------------------------------------------------------------------------------- /src/core/DbgPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/DbgPrint.h -------------------------------------------------------------------------------- /src/core/DebugR4300i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/DebugR4300i.cpp -------------------------------------------------------------------------------- /src/core/FPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/FPU.cpp -------------------------------------------------------------------------------- /src/core/FrameBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/FrameBuffer.cpp -------------------------------------------------------------------------------- /src/core/FrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/FrameBuffer.h -------------------------------------------------------------------------------- /src/core/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/Globals.h -------------------------------------------------------------------------------- /src/core/InterpretedOpcodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/InterpretedOpcodes.cpp -------------------------------------------------------------------------------- /src/core/InterpretedOpcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/InterpretedOpcodes.h -------------------------------------------------------------------------------- /src/core/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/Main.cpp -------------------------------------------------------------------------------- /src/core/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/Memory.cpp -------------------------------------------------------------------------------- /src/core/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/Memory.h -------------------------------------------------------------------------------- /src/core/OpcodeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/OpcodeMap.h -------------------------------------------------------------------------------- /src/core/R4300i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/R4300i.cpp -------------------------------------------------------------------------------- /src/core/R4300i_32bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/R4300i_32bit.cpp -------------------------------------------------------------------------------- /src/core/Registers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/Registers.cpp -------------------------------------------------------------------------------- /src/core/Registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/Registers.h -------------------------------------------------------------------------------- /src/core/State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/State.cpp -------------------------------------------------------------------------------- /src/core/State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/State.h -------------------------------------------------------------------------------- /src/core/Tlb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/Tlb.cpp -------------------------------------------------------------------------------- /src/core/Ultra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/Ultra.h -------------------------------------------------------------------------------- /src/core/ZLIST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/ZLIST.cpp -------------------------------------------------------------------------------- /src/core/_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/_memory.cpp -------------------------------------------------------------------------------- /src/core/_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/_memory.h -------------------------------------------------------------------------------- /src/core/cheatcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/cheatcode.cpp -------------------------------------------------------------------------------- /src/core/cheatcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/cheatcode.h -------------------------------------------------------------------------------- /src/core/compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/compiler.cpp -------------------------------------------------------------------------------- /src/core/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/compiler.h -------------------------------------------------------------------------------- /src/core/debug_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/debug_option.h -------------------------------------------------------------------------------- /src/core/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dma.cpp -------------------------------------------------------------------------------- /src/core/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dma.h -------------------------------------------------------------------------------- /src/core/dynarec/Analyze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/Analyze.cpp -------------------------------------------------------------------------------- /src/core/dynarec/OpcodeDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/OpcodeDebugger.cpp -------------------------------------------------------------------------------- /src/core/dynarec/RegcacheNew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/RegcacheNew.cpp -------------------------------------------------------------------------------- /src/core/dynarec/dynaBranch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/dynaBranch.h -------------------------------------------------------------------------------- /src/core/dynarec/dynaCOP1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/dynaCOP1.cpp -------------------------------------------------------------------------------- /src/core/dynarec/dynaCOP1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/dynaCOP1.h -------------------------------------------------------------------------------- /src/core/dynarec/dynaCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/dynaCPU.cpp -------------------------------------------------------------------------------- /src/core/dynarec/dynaCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/dynaCPU.h -------------------------------------------------------------------------------- /src/core/dynarec/dynaHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/dynaHelper.h -------------------------------------------------------------------------------- /src/core/dynarec/dynaLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/dynaLog.cpp -------------------------------------------------------------------------------- /src/core/dynarec/dynaLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/dynaLog.h -------------------------------------------------------------------------------- /src/core/dynarec/dynaRec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/dynaRec.h -------------------------------------------------------------------------------- /src/core/dynarec/opcodeDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/opcodeDebugger.h -------------------------------------------------------------------------------- /src/core/dynarec/regcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/regcache.cpp -------------------------------------------------------------------------------- /src/core/dynarec/regcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/regcache.h -------------------------------------------------------------------------------- /src/core/dynarec/regcache_sse_fpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/regcache_sse_fpu.cpp -------------------------------------------------------------------------------- /src/core/dynarec/x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/x86.cpp -------------------------------------------------------------------------------- /src/core/dynarec/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/x86.h -------------------------------------------------------------------------------- /src/core/dynarec/xmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/xmm.cpp -------------------------------------------------------------------------------- /src/core/dynarec/xmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/dynarec/xmm.h -------------------------------------------------------------------------------- /src/core/emulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/emulator.cpp -------------------------------------------------------------------------------- /src/core/emulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/emulator.h -------------------------------------------------------------------------------- /src/core/fileio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/fileio.cpp -------------------------------------------------------------------------------- /src/core/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/fileio.h -------------------------------------------------------------------------------- /src/core/gamesave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/gamesave.cpp -------------------------------------------------------------------------------- /src/core/gamesave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/gamesave.h -------------------------------------------------------------------------------- /src/core/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/globals.cpp -------------------------------------------------------------------------------- /src/core/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/hardware.h -------------------------------------------------------------------------------- /src/core/hle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/hle.h -------------------------------------------------------------------------------- /src/core/iFpuWithCP1Unusable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/iFpuWithCP1Unusable.cpp -------------------------------------------------------------------------------- /src/core/iPIF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/iPIF.cpp -------------------------------------------------------------------------------- /src/core/iPIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/iPIF.h -------------------------------------------------------------------------------- /src/core/imagelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/imagelist.cpp -------------------------------------------------------------------------------- /src/core/interrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/interrupt.cpp -------------------------------------------------------------------------------- /src/core/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/interrupt.h -------------------------------------------------------------------------------- /src/core/kaillera/Kaillera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/kaillera/Kaillera.cpp -------------------------------------------------------------------------------- /src/core/kaillera/Kaillera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/kaillera/Kaillera.h -------------------------------------------------------------------------------- /src/core/memory2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/memory2.cpp -------------------------------------------------------------------------------- /src/core/n64rcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/n64rcp.cpp -------------------------------------------------------------------------------- /src/core/n64rcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/n64rcp.h -------------------------------------------------------------------------------- /src/core/netplay-spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/netplay-spec.h -------------------------------------------------------------------------------- /src/core/plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/plugins.h -------------------------------------------------------------------------------- /src/core/profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/profiler.cpp -------------------------------------------------------------------------------- /src/core/r4300i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/r4300i.h -------------------------------------------------------------------------------- /src/core/r4300i_32bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/r4300i_32bit.h -------------------------------------------------------------------------------- /src/core/romlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/romlist.cpp -------------------------------------------------------------------------------- /src/core/romlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/romlist.h -------------------------------------------------------------------------------- /src/core/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/stdafx.h -------------------------------------------------------------------------------- /src/core/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/timer.cpp -------------------------------------------------------------------------------- /src/core/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/timer.h -------------------------------------------------------------------------------- /src/core/win32/1964.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/1964.bmp -------------------------------------------------------------------------------- /src/core/win32/1964.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/1964.exe.manifest -------------------------------------------------------------------------------- /src/core/win32/1964ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/1964ini.cpp -------------------------------------------------------------------------------- /src/core/win32/DLL_Rsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/DLL_Rsp.cpp -------------------------------------------------------------------------------- /src/core/win32/DLL_Rsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/DLL_Rsp.h -------------------------------------------------------------------------------- /src/core/win32/Dll_Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/Dll_Audio.cpp -------------------------------------------------------------------------------- /src/core/win32/Dll_Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/Dll_Input.cpp -------------------------------------------------------------------------------- /src/core/win32/Dll_Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/Dll_Input.h -------------------------------------------------------------------------------- /src/core/win32/Dll_Video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/Dll_Video.cpp -------------------------------------------------------------------------------- /src/core/win32/Dll_Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/Dll_Video.h -------------------------------------------------------------------------------- /src/core/win32/N64logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/N64logo.bmp -------------------------------------------------------------------------------- /src/core/win32/almost_p.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/almost_p.ico -------------------------------------------------------------------------------- /src/core/win32/audio.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/audio.bmp -------------------------------------------------------------------------------- /src/core/win32/bitmap2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/bitmap2.bmp -------------------------------------------------------------------------------- /src/core/win32/bmp00001.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/bmp00001.bmp -------------------------------------------------------------------------------- /src/core/win32/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/icon1.ico -------------------------------------------------------------------------------- /src/core/win32/icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/icon2.ico -------------------------------------------------------------------------------- /src/core/win32/input.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/input.bmp -------------------------------------------------------------------------------- /src/core/win32/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/logo.bmp -------------------------------------------------------------------------------- /src/core/win32/not_play.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/not_play.ico -------------------------------------------------------------------------------- /src/core/win32/playable.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/playable.ico -------------------------------------------------------------------------------- /src/core/win32/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/registry.cpp -------------------------------------------------------------------------------- /src/core/win32/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/registry.h -------------------------------------------------------------------------------- /src/core/win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/resource.h -------------------------------------------------------------------------------- /src/core/win32/rom_open.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/rom_open.bmp -------------------------------------------------------------------------------- /src/core/win32/rsp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/rsp.bmp -------------------------------------------------------------------------------- /src/core/win32/toolbar1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/toolbar1.bmp -------------------------------------------------------------------------------- /src/core/win32/toolbar24bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/toolbar24bit.bmp -------------------------------------------------------------------------------- /src/core/win32/tooltips.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/tooltips.cpp -------------------------------------------------------------------------------- /src/core/win32/unknown.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/unknown.ico -------------------------------------------------------------------------------- /src/core/win32/video.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/video.bmp -------------------------------------------------------------------------------- /src/core/win32/windebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/windebug.cpp -------------------------------------------------------------------------------- /src/core/win32/windebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/windebug.h -------------------------------------------------------------------------------- /src/core/win32/wingui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/wingui.cpp -------------------------------------------------------------------------------- /src/core/win32/wingui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/wingui.h -------------------------------------------------------------------------------- /src/core/win32/wingui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/wingui.rc -------------------------------------------------------------------------------- /src/core/win32/wingui2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/win32/wingui2.cpp -------------------------------------------------------------------------------- /src/core/zlib/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/zlib/ioapi.h -------------------------------------------------------------------------------- /src/core/zlib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/zlib/readme.txt -------------------------------------------------------------------------------- /src/core/zlib/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/zlib/unzip.h -------------------------------------------------------------------------------- /src/core/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/zlib/zconf.h -------------------------------------------------------------------------------- /src/core/zlib/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/zlib/zip.h -------------------------------------------------------------------------------- /src/core/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/zlib/zlib.h -------------------------------------------------------------------------------- /src/core/zlib/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schibo/1964/HEAD/src/core/zlib/zlib.lib --------------------------------------------------------------------------------