├── .ci ├── build-freebsd.sh ├── build-linux.sh ├── build-mac.sh ├── deploy-linux.sh ├── deploy-windows.sh ├── docker.env ├── export-azure-vars.sh ├── export-cirrus-vars.sh ├── get_keys-windows.sh ├── github-upload.sh ├── install-freebsd.sh └── setup-windows.sh ├── .cirrus.yml ├── .clang-format ├── .editorconfig ├── .gdbinit ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 1-regression-report.md │ ├── 2-bug-report.md │ ├── 3-feature-request.md │ └── config.yml ├── PR-BUILD.md └── PULL_REQUEST_TEMPLATE │ └── 1-default.md ├── .gitignore ├── .gitmodules ├── 3rdparty ├── 7z │ ├── 7zlib.vcxproj │ ├── 7zlib.vcxproj.filters │ ├── CMakeLists.txt │ └── src │ │ ├── 7z.h │ │ ├── 7zAlloc.c │ │ ├── 7zAlloc.h │ │ ├── 7zArcIn.c │ │ ├── 7zBuf.c │ │ ├── 7zBuf.h │ │ ├── 7zBuf2.c │ │ ├── 7zCrc.c │ │ ├── 7zCrc.h │ │ ├── 7zCrcOpt.c │ │ ├── 7zDec.c │ │ ├── 7zFile.c │ │ ├── 7zFile.h │ │ ├── 7zStream.c │ │ ├── 7zTypes.h │ │ ├── 7zVersion.h │ │ ├── 7zVersion.rc │ │ ├── Aes.c │ │ ├── Aes.h │ │ ├── AesOpt.c │ │ ├── Alloc.c │ │ ├── Alloc.h │ │ ├── Bcj2.c │ │ ├── Bcj2.h │ │ ├── Bcj2Enc.c │ │ ├── Bra.c │ │ ├── Bra.h │ │ ├── Bra86.c │ │ ├── BraIA64.c │ │ ├── Compiler.h │ │ ├── CpuArch.c │ │ ├── CpuArch.h │ │ ├── Delta.c │ │ ├── Delta.h │ │ ├── DllSecur.c │ │ ├── DllSecur.h │ │ ├── LzFind.c │ │ ├── LzFind.h │ │ ├── LzFindMt.c │ │ ├── LzFindMt.h │ │ ├── LzHash.h │ │ ├── Lzma2Dec.c │ │ ├── Lzma2Dec.h │ │ ├── Lzma2DecMt.c │ │ ├── Lzma2DecMt.h │ │ ├── Lzma2Enc.c │ │ ├── Lzma2Enc.h │ │ ├── Lzma86.h │ │ ├── Lzma86Dec.c │ │ ├── Lzma86Enc.c │ │ ├── LzmaDec.c │ │ ├── LzmaDec.h │ │ ├── LzmaEnc.c │ │ ├── LzmaEnc.h │ │ ├── LzmaLib.c │ │ ├── LzmaLib.h │ │ ├── MtCoder.c │ │ ├── MtCoder.h │ │ ├── MtDec.c │ │ ├── MtDec.h │ │ ├── Ppmd.h │ │ ├── Ppmd7.c │ │ ├── Ppmd7.h │ │ ├── Ppmd7Dec.c │ │ ├── Ppmd7Enc.c │ │ ├── Precomp.h │ │ ├── RotateDefs.h │ │ ├── Sha256.c │ │ ├── Sha256.h │ │ ├── Sort.c │ │ ├── Sort.h │ │ ├── Threads.c │ │ ├── Threads.h │ │ ├── Xz.c │ │ ├── Xz.h │ │ ├── XzCrc64.c │ │ ├── XzCrc64.h │ │ ├── XzCrc64Opt.c │ │ ├── XzDec.c │ │ ├── XzEnc.c │ │ ├── XzEnc.h │ │ └── XzIn.c ├── CMakeLists.txt ├── GL │ ├── glext.h │ └── khrplatform.h ├── GPUOpen │ └── include │ │ ├── ffx_a.h │ │ ├── ffx_fsr1.h │ │ └── vk_mem_alloc.h ├── OpenAL │ ├── CMakeLists.txt │ ├── include │ │ ├── al.h │ │ ├── alc.h │ │ ├── alext.h │ │ ├── efx-creative.h │ │ ├── efx-presets.h │ │ └── efx.h │ └── libs │ │ └── Win64 │ │ ├── OpenAL32.def │ │ └── OpenAL32.lib ├── SPIRV │ ├── .gitignore │ ├── CMakeLists.txt │ ├── spirv.vcxproj │ └── spirv.vcxproj.filters ├── XAudio2Redist │ ├── include │ │ └── xaudio2redist.h │ └── libs │ │ └── xaudio2_9redist.lib ├── asmjit │ ├── CMakeLists.txt │ ├── asmjit.vcxproj │ └── asmjit.vcxproj.filters ├── cubeb │ ├── CMakeLists.txt │ ├── extra │ │ └── cubeb_export.h │ ├── libcubeb.vcxproj │ └── libcubeb.vcxproj.filters ├── curl │ ├── CMakeLists.txt │ ├── extra │ │ └── wolfssl │ │ │ └── options.h │ ├── libcurl.vcxproj │ └── libcurl.vcxproj.filters ├── discord-rpc │ ├── CMakeLists.txt │ ├── include │ │ ├── discord_register.h │ │ └── discord_rpc.h │ └── lib │ │ ├── discord-rpc.lib │ │ ├── libdiscord-rpc-linux.a │ │ └── libdiscord-rpc-mac.a ├── glslang │ ├── .gitignore │ ├── CMakeLists.txt │ ├── glslang.vcxproj │ └── glslang.vcxproj.filters ├── hidapi │ ├── CMakeLists.txt │ ├── hidapi.vcxproj │ └── hidapi.vcxproj.filters ├── libpng │ ├── CMakeLists.txt │ ├── libpng.vcxproj │ └── pnglibconf.vcxproj ├── libusb │ ├── CMakeLists.txt │ ├── cmake_modules │ │ ├── FindCoreFoundation.cmake │ │ ├── FindIOKit.cmake │ │ └── LibFindMacros.cmake │ ├── config.cmake │ ├── config.h.cmake │ ├── libusb-1.0.pc.cmake │ ├── libusb.cmake │ ├── libusb_static.vcxproj │ └── os.cmake ├── llvm.cmake ├── qt5.cmake ├── stblib │ ├── LICENSE │ └── include │ │ ├── stb_image.h │ │ └── stb_truetype.h ├── wolfssl │ ├── CMakeLists.txt │ └── wolfssl.vcxproj ├── xxhash.vcxproj ├── yaml-cpp │ ├── CMakeLists.txt │ ├── yaml-cpp.vcxproj │ └── yaml-cpp.vcxproj.filters └── zlib │ ├── CMakeLists.txt │ ├── zlib.props │ └── zlib.vcxproj ├── BUILDING.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── Utilities ├── BitField.h ├── CRC.h ├── Config.cpp ├── Config.h ├── File.cpp ├── File.h ├── JIT.cpp ├── JIT.h ├── LUrlParser.cpp ├── LUrlParser.h ├── StrFmt.cpp ├── StrFmt.h ├── StrUtil.h ├── Thread.cpp ├── Thread.h ├── Timer.h ├── address_range.h ├── bin_patch.cpp ├── bin_patch.h ├── bit_set.h ├── cfmt.h ├── cheat_info.cpp ├── cheat_info.h ├── cond.cpp ├── cond.h ├── date_time.h ├── geometry.h ├── git-version-gen.cmd ├── lockless.h ├── mutex.cpp ├── mutex.h ├── rXml.cpp ├── rXml.h ├── sema.cpp ├── sema.h ├── simple_ringbuf.cpp ├── simple_ringbuf.h ├── sync.h ├── version.cpp └── version.h ├── azure-pipelines.yml ├── bin ├── GuiConfigs │ ├── Classic (Bright).qss │ ├── Darker Style by TheMitoSan.qss │ ├── Envy.qss │ ├── Kuroi (Dark) by Ani.qss │ ├── ModernBlue Theme by TheMitoSan.qss │ ├── Nekotekina by GooseWing.qss │ ├── Skyline (Nightfall).qss │ ├── Skyline.qss │ ├── YoRHa by Ani.qss │ ├── YoRHa-background.jpg │ ├── kot-bg.jpg │ ├── list_arrow_blue.png │ ├── list_arrow_down_blue.png │ ├── list_arrow_down_green.png │ ├── list_arrow_down_white.png │ ├── list_arrow_green.png │ └── list_arrow_white.png ├── Icons │ └── ui │ │ ├── L1.png │ │ ├── L2.png │ │ ├── R1.png │ │ ├── R2.png │ │ ├── circle.png │ │ ├── cross.png │ │ ├── dpad.png │ │ ├── dpad_down.png │ │ ├── dpad_left.png │ │ ├── dpad_right.png │ │ ├── dpad_up.png │ │ ├── fade_bottom.png │ │ ├── fade_top.png │ │ ├── left_stick.png │ │ ├── new.png │ │ ├── right_stick.png │ │ ├── save.png │ │ ├── select.png │ │ ├── square.png │ │ ├── start.png │ │ └── triangle.png ├── OpenAL32.dll ├── dev_hdd0 │ └── game │ │ └── TEST12345 │ │ └── USRDIR │ │ ├── dump_stack.elf │ │ ├── gs_gcm_basic_triangle.elf │ │ ├── gs_gcm_cube.elf │ │ ├── gs_gcm_handle_system_cmd.elf │ │ ├── gs_gcm_hello_world.elf │ │ ├── gs_gcm_tetris.elf │ │ ├── pad_test.elf │ │ ├── ppu_thread.elf │ │ ├── pspgame.elf │ │ ├── rpcsp.elf │ │ └── spurs_test.self ├── git │ ├── README.md │ └── commits.lst └── xaudio2_9redist.dll ├── git-clang-format ├── llvm_build ├── llvm_build.vcxproj ├── llvm_build.vcxproj.filters ├── llvm_build_clang_cl.vcxproj └── llvm_build_clang_cl.vcxproj.filters ├── pre-commit.readme ├── rpcs3.sln ├── rpcs3 ├── CMakeLists.txt ├── Crypto │ ├── aes.cpp │ ├── aes.h │ ├── aesni.cpp │ ├── aesni.h │ ├── ec.cpp │ ├── ec.h │ ├── key_vault.cpp │ ├── key_vault.h │ ├── lz.cpp │ ├── lz.h │ ├── md5.cpp │ ├── md5.h │ ├── sha1.cpp │ ├── sha1.h │ ├── sha256.cpp │ ├── sha256.h │ ├── unedat.cpp │ ├── unedat.h │ ├── unpkg.cpp │ ├── unpkg.h │ ├── unself.cpp │ ├── unself.h │ ├── utils.cpp │ └── utils.h ├── Cubeb.vcxproj ├── Cubeb.vcxproj.filters ├── Emu │ ├── Audio │ │ ├── AudioBackend.cpp │ │ ├── AudioBackend.h │ │ ├── AudioDumper.cpp │ │ ├── AudioDumper.h │ │ ├── Cubeb │ │ │ ├── CubebBackend.cpp │ │ │ └── CubebBackend.h │ │ ├── FAudio │ │ │ ├── FAudioBackend.cpp │ │ │ └── FAudioBackend.h │ │ ├── Null │ │ │ └── NullAudioBackend.h │ │ ├── XAudio2 │ │ │ ├── XAudio2Backend.cpp │ │ │ └── XAudio2Backend.h │ │ ├── audio_device_listener.cpp │ │ └── audio_device_listener.h │ ├── CMakeLists.txt │ ├── CPU │ │ ├── CPUDisAsm.h │ │ ├── CPUThread.cpp │ │ ├── CPUThread.h │ │ ├── CPUTranslator.cpp │ │ └── CPUTranslator.h │ ├── Cell │ │ ├── Common.h │ │ ├── ErrorCodes.h │ │ ├── MFC.cpp │ │ ├── MFC.h │ │ ├── Modules │ │ │ ├── StaticHLE.cpp │ │ │ ├── StaticHLE.h │ │ │ ├── cellAdec.cpp │ │ │ ├── cellAdec.h │ │ │ ├── cellAtrac.cpp │ │ │ ├── cellAtrac.h │ │ │ ├── cellAtracMulti.cpp │ │ │ ├── cellAtracMulti.h │ │ │ ├── cellAudio.cpp │ │ │ ├── cellAudio.h │ │ │ ├── cellAudioIn.h │ │ │ ├── cellAudioOut.cpp │ │ │ ├── cellAudioOut.h │ │ │ ├── cellAuthDialog.cpp │ │ │ ├── cellAvconfExt.cpp │ │ │ ├── cellBgdl.cpp │ │ │ ├── cellBgdl.h │ │ │ ├── cellCamera.cpp │ │ │ ├── cellCamera.h │ │ │ ├── cellCelp8Enc.cpp │ │ │ ├── cellCelp8Enc.h │ │ │ ├── cellCelpEnc.cpp │ │ │ ├── cellCelpEnc.h │ │ │ ├── cellCrossController.cpp │ │ │ ├── cellCrossController.h │ │ │ ├── cellDaisy.cpp │ │ │ ├── cellDaisy.h │ │ │ ├── cellDmux.cpp │ │ │ ├── cellDmux.h │ │ │ ├── cellDtcpIpUtility.cpp │ │ │ ├── cellFiber.cpp │ │ │ ├── cellFiber.h │ │ │ ├── cellFont.cpp │ │ │ ├── cellFont.h │ │ │ ├── cellFontFT.cpp │ │ │ ├── cellFontFT.h │ │ │ ├── cellFs.cpp │ │ │ ├── cellFs.h │ │ │ ├── cellGame.cpp │ │ │ ├── cellGame.h │ │ │ ├── cellGameExec.cpp │ │ │ ├── cellGcmSys.cpp │ │ │ ├── cellGcmSys.h │ │ │ ├── cellGem.cpp │ │ │ ├── cellGem.h │ │ │ ├── cellGifDec.cpp │ │ │ ├── cellGifDec.h │ │ │ ├── cellHttp.cpp │ │ │ ├── cellHttp.h │ │ │ ├── cellHttpUtil.cpp │ │ │ ├── cellHttpUtil.h │ │ │ ├── cellImeJp.cpp │ │ │ ├── cellImeJp.h │ │ │ ├── cellJpgDec.cpp │ │ │ ├── cellJpgDec.h │ │ │ ├── cellJpgEnc.cpp │ │ │ ├── cellJpgEnc.h │ │ │ ├── cellKb.cpp │ │ │ ├── cellKb.h │ │ │ ├── cellKey2char.cpp │ │ │ ├── cellL10n.cpp │ │ │ ├── cellL10n.h │ │ │ ├── cellLibprof.cpp │ │ │ ├── cellMic.cpp │ │ │ ├── cellMic.h │ │ │ ├── cellMouse.cpp │ │ │ ├── cellMouse.h │ │ │ ├── cellMsgDialog.cpp │ │ │ ├── cellMsgDialog.h │ │ │ ├── cellMusic.cpp │ │ │ ├── cellMusic.h │ │ │ ├── cellMusicDecode.cpp │ │ │ ├── cellMusicExport.cpp │ │ │ ├── cellNetAoi.cpp │ │ │ ├── cellNetCtl.cpp │ │ │ ├── cellNetCtl.h │ │ │ ├── cellOskDialog.cpp │ │ │ ├── cellOskDialog.h │ │ │ ├── cellOvis.cpp │ │ │ ├── cellPad.cpp │ │ │ ├── cellPad.h │ │ │ ├── cellPamf.cpp │ │ │ ├── cellPamf.h │ │ │ ├── cellPesmUtility.cpp │ │ │ ├── cellPhotoDecode.cpp │ │ │ ├── cellPhotoExport.cpp │ │ │ ├── cellPhotoImport.cpp │ │ │ ├── cellPng.h │ │ │ ├── cellPngDec.cpp │ │ │ ├── cellPngDec.h │ │ │ ├── cellPngEnc.cpp │ │ │ ├── cellPngEnc.h │ │ │ ├── cellPrint.cpp │ │ │ ├── cellRec.cpp │ │ │ ├── cellRemotePlay.cpp │ │ │ ├── cellRemotePlay.h │ │ │ ├── cellResc.cpp │ │ │ ├── cellResc.h │ │ │ ├── cellRtc.cpp │ │ │ ├── cellRtc.h │ │ │ ├── cellRtcAlarm.cpp │ │ │ ├── cellRudp.cpp │ │ │ ├── cellRudp.h │ │ │ ├── cellSail.cpp │ │ │ ├── cellSail.h │ │ │ ├── cellSailRec.cpp │ │ │ ├── cellSaveData.cpp │ │ │ ├── cellSaveData.h │ │ │ ├── cellScreenshot.cpp │ │ │ ├── cellScreenshot.h │ │ │ ├── cellSearch.cpp │ │ │ ├── cellSearch.h │ │ │ ├── cellSheap.cpp │ │ │ ├── cellSpudll.cpp │ │ │ ├── cellSpudll.h │ │ │ ├── cellSpurs.cpp │ │ │ ├── cellSpurs.h │ │ │ ├── cellSpursJq.cpp │ │ │ ├── cellSpursJq.h │ │ │ ├── cellSpursSpu.cpp │ │ │ ├── cellSsl.cpp │ │ │ ├── cellSsl.h │ │ │ ├── cellStorage.cpp │ │ │ ├── cellStorage.h │ │ │ ├── cellSubDisplay.cpp │ │ │ ├── cellSubDisplay.h │ │ │ ├── cellSync.cpp │ │ │ ├── cellSync.h │ │ │ ├── cellSync2.cpp │ │ │ ├── cellSync2.h │ │ │ ├── cellSysCache.cpp │ │ │ ├── cellSysconf.cpp │ │ │ ├── cellSysconf.h │ │ │ ├── cellSysmodule.cpp │ │ │ ├── cellSysutil.cpp │ │ │ ├── cellSysutil.h │ │ │ ├── cellSysutilAp.cpp │ │ │ ├── cellSysutilAvc.cpp │ │ │ ├── cellSysutilAvc2.cpp │ │ │ ├── cellSysutilAvc2.h │ │ │ ├── cellSysutilAvcExt.cpp │ │ │ ├── cellSysutilMisc.cpp │ │ │ ├── cellSysutilNpEula.cpp │ │ │ ├── cellUsbd.cpp │ │ │ ├── cellUsbd.h │ │ │ ├── cellUsbpspcm.cpp │ │ │ ├── cellUserInfo.cpp │ │ │ ├── cellUserInfo.h │ │ │ ├── cellVdec.cpp │ │ │ ├── cellVdec.h │ │ │ ├── cellVideoExport.cpp │ │ │ ├── cellVideoOut.cpp │ │ │ ├── cellVideoOut.h │ │ │ ├── cellVideoPlayerUtility.cpp │ │ │ ├── cellVideoUpload.cpp │ │ │ ├── cellVideoUpload.h │ │ │ ├── cellVoice.cpp │ │ │ ├── cellVoice.h │ │ │ ├── cellVpost.cpp │ │ │ ├── cellVpost.h │ │ │ ├── cellWebBrowser.cpp │ │ │ ├── cellWebBrowser.h │ │ │ ├── cell_FreeType2.cpp │ │ │ ├── libad_async.cpp │ │ │ ├── libad_core.cpp │ │ │ ├── libfs_utility_init.cpp │ │ │ ├── libfs_utility_init.h │ │ │ ├── libmedi.cpp │ │ │ ├── libmixer.cpp │ │ │ ├── libmixer.h │ │ │ ├── libsnd3.cpp │ │ │ ├── libsnd3.h │ │ │ ├── libsynth2.cpp │ │ │ ├── libsynth2.h │ │ │ ├── sceNp.cpp │ │ │ ├── sceNp.h │ │ │ ├── sceNp2.cpp │ │ │ ├── sceNp2.h │ │ │ ├── sceNpClans.cpp │ │ │ ├── sceNpClans.h │ │ │ ├── sceNpCommerce2.cpp │ │ │ ├── sceNpCommerce2.h │ │ │ ├── sceNpMatchingInt.cpp │ │ │ ├── sceNpSns.cpp │ │ │ ├── sceNpSns.h │ │ │ ├── sceNpTrophy.cpp │ │ │ ├── sceNpTrophy.h │ │ │ ├── sceNpTus.cpp │ │ │ ├── sceNpTus.h │ │ │ ├── sceNpUtil.cpp │ │ │ ├── sceNpUtil.h │ │ │ ├── sysPrxForUser.cpp │ │ │ ├── sysPrxForUser.h │ │ │ ├── sys_crashdump.cpp │ │ │ ├── sys_crashdump.h │ │ │ ├── sys_game.cpp │ │ │ ├── sys_heap.cpp │ │ │ ├── sys_io_.cpp │ │ │ ├── sys_libc.cpp │ │ │ ├── sys_libc_.cpp │ │ │ ├── sys_lv2dbg.cpp │ │ │ ├── sys_lv2dbg.h │ │ │ ├── sys_lwcond_.cpp │ │ │ ├── sys_lwmutex_.cpp │ │ │ ├── sys_mempool.cpp │ │ │ ├── sys_mmapper_.cpp │ │ │ ├── sys_net_.cpp │ │ │ ├── sys_net_.h │ │ │ ├── sys_ppu_thread_.cpp │ │ │ ├── sys_prx_.cpp │ │ │ ├── sys_rsxaudio_.cpp │ │ │ ├── sys_spinlock.cpp │ │ │ └── sys_spu_.cpp │ │ ├── PPCDisAsm.h │ │ ├── PPUAnalyser.cpp │ │ ├── PPUAnalyser.h │ │ ├── PPUCallback.h │ │ ├── PPUDisAsm.cpp │ │ ├── PPUDisAsm.h │ │ ├── PPUFunction.cpp │ │ ├── PPUFunction.h │ │ ├── PPUInterpreter.cpp │ │ ├── PPUInterpreter.h │ │ ├── PPUModule.cpp │ │ ├── PPUModule.h │ │ ├── PPUOpcodes.h │ │ ├── PPUThread.cpp │ │ ├── PPUThread.h │ │ ├── PPUTranslator.cpp │ │ ├── PPUTranslator.h │ │ ├── RawSPUThread.cpp │ │ ├── RawSPUThread.h │ │ ├── SPUASMJITRecompiler.cpp │ │ ├── SPUASMJITRecompiler.h │ │ ├── SPUAnalyser.cpp │ │ ├── SPUAnalyser.h │ │ ├── SPUDisAsm.cpp │ │ ├── SPUDisAsm.h │ │ ├── SPUInterpreter.cpp │ │ ├── SPUInterpreter.h │ │ ├── SPUOpcodes.h │ │ ├── SPURecompiler.cpp │ │ ├── SPURecompiler.h │ │ ├── SPUThread.cpp │ │ ├── SPUThread.h │ │ ├── lv2 │ │ │ ├── lv2.cpp │ │ │ ├── sys_bdemu.cpp │ │ │ ├── sys_bdemu.h │ │ │ ├── sys_btsetting.cpp │ │ │ ├── sys_btsetting.h │ │ │ ├── sys_cond.cpp │ │ │ ├── sys_cond.h │ │ │ ├── sys_config.cpp │ │ │ ├── sys_config.h │ │ │ ├── sys_console.cpp │ │ │ ├── sys_console.h │ │ │ ├── sys_crypto_engine.cpp │ │ │ ├── sys_crypto_engine.h │ │ │ ├── sys_dbg.cpp │ │ │ ├── sys_dbg.h │ │ │ ├── sys_event.cpp │ │ │ ├── sys_event.h │ │ │ ├── sys_event_flag.cpp │ │ │ ├── sys_event_flag.h │ │ │ ├── sys_fs.cpp │ │ │ ├── sys_fs.h │ │ │ ├── sys_gamepad.cpp │ │ │ ├── sys_gamepad.h │ │ │ ├── sys_gpio.cpp │ │ │ ├── sys_gpio.h │ │ │ ├── sys_hid.cpp │ │ │ ├── sys_hid.h │ │ │ ├── sys_interrupt.cpp │ │ │ ├── sys_interrupt.h │ │ │ ├── sys_io.cpp │ │ │ ├── sys_io.h │ │ │ ├── sys_lwcond.cpp │ │ │ ├── sys_lwcond.h │ │ │ ├── sys_lwmutex.cpp │ │ │ ├── sys_lwmutex.h │ │ │ ├── sys_memory.cpp │ │ │ ├── sys_memory.h │ │ │ ├── sys_mmapper.cpp │ │ │ ├── sys_mmapper.h │ │ │ ├── sys_mutex.cpp │ │ │ ├── sys_mutex.h │ │ │ ├── sys_net.cpp │ │ │ ├── sys_net.h │ │ │ ├── sys_overlay.cpp │ │ │ ├── sys_overlay.h │ │ │ ├── sys_ppu_thread.cpp │ │ │ ├── sys_ppu_thread.h │ │ │ ├── sys_process.cpp │ │ │ ├── sys_process.h │ │ │ ├── sys_prx.cpp │ │ │ ├── sys_prx.h │ │ │ ├── sys_rsx.cpp │ │ │ ├── sys_rsx.h │ │ │ ├── sys_rsxaudio.cpp │ │ │ ├── sys_rsxaudio.h │ │ │ ├── sys_rwlock.cpp │ │ │ ├── sys_rwlock.h │ │ │ ├── sys_semaphore.cpp │ │ │ ├── sys_semaphore.h │ │ │ ├── sys_sm.cpp │ │ │ ├── sys_sm.h │ │ │ ├── sys_spu.cpp │ │ │ ├── sys_spu.h │ │ │ ├── sys_ss.cpp │ │ │ ├── sys_ss.h │ │ │ ├── sys_storage.cpp │ │ │ ├── sys_storage.h │ │ │ ├── sys_sync.h │ │ │ ├── sys_time.cpp │ │ │ ├── sys_time.h │ │ │ ├── sys_timer.cpp │ │ │ ├── sys_timer.h │ │ │ ├── sys_trace.cpp │ │ │ ├── sys_trace.h │ │ │ ├── sys_tty.cpp │ │ │ ├── sys_tty.h │ │ │ ├── sys_uart.cpp │ │ │ ├── sys_uart.h │ │ │ ├── sys_usbd.cpp │ │ │ ├── sys_usbd.h │ │ │ ├── sys_vm.cpp │ │ │ └── sys_vm.h │ │ └── timers.hpp │ ├── GDB.cpp │ ├── GDB.h │ ├── GameInfo.h │ ├── IPC.h │ ├── IdManager.cpp │ ├── IdManager.h │ ├── Io │ │ ├── Buzz.cpp │ │ ├── Buzz.h │ │ ├── GHLtar.cpp │ │ ├── GHLtar.h │ │ ├── Keyboard.h │ │ ├── KeyboardHandler.cpp │ │ ├── KeyboardHandler.h │ │ ├── MouseHandler.h │ │ ├── Null │ │ │ ├── NullKeyboardHandler.h │ │ │ ├── NullMouseHandler.h │ │ │ ├── NullPadHandler.h │ │ │ └── null_camera_handler.h │ │ ├── PadHandler.cpp │ │ ├── PadHandler.h │ │ ├── Skylander.cpp │ │ ├── Skylander.h │ │ ├── Turntable.cpp │ │ ├── Turntable.h │ │ ├── camera_config.cpp │ │ ├── camera_config.h │ │ ├── camera_handler_base.h │ │ ├── interception.cpp │ │ ├── interception.h │ │ ├── pad_config.cpp │ │ ├── pad_config.h │ │ ├── pad_config_types.cpp │ │ ├── pad_config_types.h │ │ ├── pad_types.h │ │ ├── usb_device.cpp │ │ ├── usb_device.h │ │ ├── usio.cpp │ │ └── usio.h │ ├── Memory │ │ ├── vm.cpp │ │ ├── vm.h │ │ ├── vm_locking.h │ │ ├── vm_ptr.h │ │ ├── vm_ref.h │ │ ├── vm_reservation.h │ │ └── vm_var.h │ ├── NP │ │ ├── fb_helpers.cpp │ │ ├── generated │ │ │ ├── np2_structs.fbs │ │ │ └── np2_structs_generated.h │ │ ├── np_allocator.h │ │ ├── np_cache.cpp │ │ ├── np_cache.h │ │ ├── np_contexts.cpp │ │ ├── np_contexts.h │ │ ├── np_dnshook.cpp │ │ ├── np_dnshook.h │ │ ├── np_event_data.h │ │ ├── np_handler.cpp │ │ ├── np_handler.h │ │ ├── np_helpers.cpp │ │ ├── np_helpers.h │ │ ├── np_notifications.cpp │ │ ├── np_requests.cpp │ │ ├── np_structs_extra.cpp │ │ ├── np_structs_extra.h │ │ ├── rpcn_client.cpp │ │ ├── rpcn_client.h │ │ ├── rpcn_config.cpp │ │ ├── rpcn_config.h │ │ ├── signaling_handler.cpp │ │ └── signaling_handler.h │ ├── RSX │ │ ├── Capture │ │ │ ├── rsx_capture.cpp │ │ │ ├── rsx_capture.h │ │ │ ├── rsx_replay.cpp │ │ │ ├── rsx_replay.h │ │ │ └── rsx_trace.h │ │ ├── Common │ │ │ ├── BufferUtils.cpp │ │ │ ├── BufferUtils.h │ │ │ ├── GLSL.std.450.h │ │ │ ├── Interpreter │ │ │ │ ├── FragmentInterpreter.glsl │ │ │ │ └── VertexInterpreter.glsl │ │ │ ├── TextGlyphs.h │ │ │ ├── TextureUtils.cpp │ │ │ ├── TextureUtils.h │ │ │ ├── bitfield.hpp │ │ │ ├── profiling_timer.hpp │ │ │ ├── ring_buffer_helper.h │ │ │ ├── simple_array.hpp │ │ │ ├── spirv.hpp │ │ │ ├── spirv_builder.hpp │ │ │ ├── surface_store.cpp │ │ │ ├── surface_store.h │ │ │ ├── surface_utils.h │ │ │ ├── texture_cache.cpp │ │ │ ├── texture_cache.h │ │ │ ├── texture_cache_checker.h │ │ │ ├── texture_cache_helpers.h │ │ │ ├── texture_cache_predictor.h │ │ │ ├── texture_cache_types.h │ │ │ └── texture_cache_utils.h │ │ ├── GCM.h │ │ ├── GSFrameBase.h │ │ ├── Null │ │ │ ├── NullGSRender.cpp │ │ │ └── NullGSRender.h │ │ ├── Overlays │ │ │ ├── Shaders │ │ │ │ ├── shader_loading_dialog.cpp │ │ │ │ ├── shader_loading_dialog.h │ │ │ │ ├── shader_loading_dialog_native.cpp │ │ │ │ └── shader_loading_dialog_native.h │ │ │ ├── overlay_animation.cpp │ │ │ ├── overlay_animation.h │ │ │ ├── overlay_controls.cpp │ │ │ ├── overlay_controls.h │ │ │ ├── overlay_edit_text.cpp │ │ │ ├── overlay_edit_text.hpp │ │ │ ├── overlay_fonts.cpp │ │ │ ├── overlay_fonts.h │ │ │ ├── overlay_list_view.cpp │ │ │ ├── overlay_list_view.hpp │ │ │ ├── overlay_message_dialog.cpp │ │ │ ├── overlay_message_dialog.h │ │ │ ├── overlay_osk.cpp │ │ │ ├── overlay_osk.h │ │ │ ├── overlay_osk_panel.cpp │ │ │ ├── overlay_osk_panel.h │ │ │ ├── overlay_perf_metrics.cpp │ │ │ ├── overlay_perf_metrics.h │ │ │ ├── overlay_progress_bar.cpp │ │ │ ├── overlay_progress_bar.hpp │ │ │ ├── overlay_save_dialog.cpp │ │ │ ├── overlay_save_dialog.h │ │ │ ├── overlay_shader_compile_notification.cpp │ │ │ ├── overlay_shader_compile_notification.h │ │ │ ├── overlay_trophy_notification.cpp │ │ │ ├── overlay_trophy_notification.h │ │ │ ├── overlay_user_list_dialog.cpp │ │ │ ├── overlay_user_list_dialog.h │ │ │ ├── overlay_utils.cpp │ │ │ ├── overlay_utils.h │ │ │ ├── overlays.cpp │ │ │ └── overlays.h │ │ ├── Program │ │ │ ├── FragmentProgramDecompiler.cpp │ │ │ ├── FragmentProgramDecompiler.h │ │ │ ├── GLSLCommon.cpp │ │ │ ├── GLSLCommon.h │ │ │ ├── GLSLTypes.h │ │ │ ├── ProgramStateCache.cpp │ │ │ ├── ProgramStateCache.h │ │ │ ├── RSXFragmentProgram.cpp │ │ │ ├── RSXFragmentProgram.h │ │ │ ├── RSXVertexProgram.h │ │ │ ├── ShaderInterpreter.h │ │ │ ├── ShaderParam.h │ │ │ ├── VertexProgramDecompiler.cpp │ │ │ ├── VertexProgramDecompiler.h │ │ │ ├── program_state_cache2.hpp │ │ │ ├── program_util.cpp │ │ │ └── program_util.h │ │ ├── RSXDisAsm.cpp │ │ ├── RSXDisAsm.h │ │ ├── RSXFIFO.cpp │ │ ├── RSXFIFO.h │ │ ├── RSXOffload.cpp │ │ ├── RSXOffload.h │ │ ├── RSXTexture.cpp │ │ ├── RSXTexture.h │ │ ├── RSXThread.cpp │ │ ├── RSXThread.h │ │ ├── VK │ │ │ ├── VKAsyncScheduler.cpp │ │ │ ├── VKAsyncScheduler.h │ │ │ ├── VKCommandStream.cpp │ │ │ ├── VKCommandStream.h │ │ │ ├── VKCommonDecompiler.cpp │ │ │ ├── VKCommonDecompiler.h │ │ │ ├── VKCompute.cpp │ │ │ ├── VKCompute.h │ │ │ ├── VKDMA.cpp │ │ │ ├── VKDMA.h │ │ │ ├── VKDraw.cpp │ │ │ ├── VKFormats.cpp │ │ │ ├── VKFormats.h │ │ │ ├── VKFragmentProgram.cpp │ │ │ ├── VKFragmentProgram.h │ │ │ ├── VKFramebuffer.cpp │ │ │ ├── VKFramebuffer.h │ │ │ ├── VKGSRender.cpp │ │ │ ├── VKGSRender.h │ │ │ ├── VKHelpers.cpp │ │ │ ├── VKHelpers.h │ │ │ ├── VKMemAlloc.cpp │ │ │ ├── VKOverlays.cpp │ │ │ ├── VKOverlays.h │ │ │ ├── VKPipelineCompiler.cpp │ │ │ ├── VKPipelineCompiler.h │ │ │ ├── VKPresent.cpp │ │ │ ├── VKProgramBuffer.h │ │ │ ├── VKProgramPipeline.cpp │ │ │ ├── VKProgramPipeline.h │ │ │ ├── VKQueryPool.cpp │ │ │ ├── VKQueryPool.h │ │ │ ├── VKRenderPass.cpp │ │ │ ├── VKRenderPass.h │ │ │ ├── VKRenderTargets.cpp │ │ │ ├── VKRenderTargets.h │ │ │ ├── VKResolveHelper.cpp │ │ │ ├── VKResolveHelper.h │ │ │ ├── VKResourceManager.cpp │ │ │ ├── VKResourceManager.h │ │ │ ├── VKShaderInterpreter.cpp │ │ │ ├── VKShaderInterpreter.h │ │ │ ├── VKTextOut.h │ │ │ ├── VKTexture.cpp │ │ │ ├── VKTextureCache.cpp │ │ │ ├── VKTextureCache.h │ │ │ ├── VKVertexBuffers.cpp │ │ │ ├── VKVertexProgram.cpp │ │ │ ├── VKVertexProgram.h │ │ │ ├── VulkanAPI.h │ │ │ ├── upscalers │ │ │ │ ├── bilinear_pass.hpp │ │ │ │ ├── fsr1 │ │ │ │ │ ├── fsr_ffx_a_flattened.inc │ │ │ │ │ ├── fsr_ffx_fsr1_flattened.inc │ │ │ │ │ ├── fsr_pass.cpp │ │ │ │ │ └── fsr_ubershader.glsl │ │ │ │ ├── fsr_pass.h │ │ │ │ └── upscaling.h │ │ │ └── vkutils │ │ │ │ ├── barriers.cpp │ │ │ │ ├── barriers.h │ │ │ │ ├── buffer_object.cpp │ │ │ │ ├── buffer_object.h │ │ │ │ ├── chip_class.cpp │ │ │ │ ├── chip_class.h │ │ │ │ ├── commands.cpp │ │ │ │ ├── commands.h │ │ │ │ ├── data_heap.cpp │ │ │ │ ├── data_heap.h │ │ │ │ ├── descriptors.cpp │ │ │ │ ├── descriptors.h │ │ │ │ ├── device.cpp │ │ │ │ ├── device.h │ │ │ │ ├── framebuffer_object.hpp │ │ │ │ ├── graphics_pipeline_state.hpp │ │ │ │ ├── image.cpp │ │ │ │ ├── image.h │ │ │ │ ├── image_helpers.cpp │ │ │ │ ├── image_helpers.h │ │ │ │ ├── instance.hpp │ │ │ │ ├── mem_allocator.h │ │ │ │ ├── memory.cpp │ │ │ │ ├── memory.h │ │ │ │ ├── pipeline_binding_table.h │ │ │ │ ├── query_pool.hpp │ │ │ │ ├── sampler.cpp │ │ │ │ ├── sampler.h │ │ │ │ ├── scratch.cpp │ │ │ │ ├── scratch.h │ │ │ │ ├── shared.cpp │ │ │ │ ├── shared.h │ │ │ │ ├── swapchain.hpp │ │ │ │ ├── sync.cpp │ │ │ │ └── sync.h │ │ ├── gcm_enums.cpp │ │ ├── gcm_enums.h │ │ ├── gcm_printing.cpp │ │ ├── gcm_printing.h │ │ ├── rsx_cache.h │ │ ├── rsx_decode.h │ │ ├── rsx_methods.cpp │ │ ├── rsx_methods.h │ │ ├── rsx_utils.cpp │ │ ├── rsx_utils.h │ │ ├── rsx_vertex_data.cpp │ │ └── rsx_vertex_data.h │ ├── System.cpp │ ├── System.h │ ├── VFS.cpp │ ├── VFS.h │ ├── cache_utils.cpp │ ├── cache_utils.hpp │ ├── localized_string.cpp │ ├── localized_string.h │ ├── localized_string_id.h │ ├── perf_meter.cpp │ ├── perf_meter.hpp │ ├── system_config.cpp │ ├── system_config.h │ ├── system_config_types.cpp │ ├── system_config_types.h │ ├── system_progress.cpp │ ├── system_progress.hpp │ ├── system_utils.cpp │ ├── system_utils.hpp │ ├── title.cpp │ ├── title.h │ ├── vfs_config.cpp │ └── vfs_config.h ├── GLGSRender.vcxproj ├── GLGSRender.vcxproj.filters ├── Input │ ├── basic_keyboard_handler.cpp │ ├── basic_keyboard_handler.h │ ├── basic_mouse_handler.cpp │ ├── basic_mouse_handler.h │ ├── ds3_pad_handler.cpp │ ├── ds3_pad_handler.h │ ├── ds4_pad_handler.cpp │ ├── ds4_pad_handler.h │ ├── dualsense_pad_handler.cpp │ ├── dualsense_pad_handler.h │ ├── evdev_joystick_handler.cpp │ ├── evdev_joystick_handler.h │ ├── hid_pad_handler.cpp │ ├── hid_pad_handler.h │ ├── keyboard_pad_handler.cpp │ ├── keyboard_pad_handler.h │ ├── mm_joystick_handler.cpp │ ├── mm_joystick_handler.h │ ├── pad_thread.cpp │ ├── pad_thread.h │ ├── product_info.h │ ├── xinput_pad_handler.cpp │ └── xinput_pad_handler.h ├── Loader │ ├── ELF.cpp │ ├── ELF.h │ ├── PSF.cpp │ ├── PSF.h │ ├── PUP.cpp │ ├── PUP.h │ ├── TAR.cpp │ ├── TAR.h │ ├── TROPUSR.cpp │ ├── TROPUSR.h │ ├── TRP.cpp │ ├── TRP.h │ ├── mself.cpp │ └── mself.hpp ├── VKGSRender.vcxproj ├── VKGSRender.vcxproj.filters ├── XAudio.vcxproj ├── XAudio.vcxproj.filters ├── display_sleep_control.cpp ├── display_sleep_control.h ├── emucore.vcxproj ├── emucore.vcxproj.filters ├── frame_icon.xpm ├── git-version.cmake ├── headless_application.cpp ├── headless_application.h ├── main.cpp ├── main_application.cpp ├── main_application.h ├── resource.h ├── resources.qrc ├── rpcs3.desktop ├── rpcs3.icns ├── rpcs3.ico ├── rpcs3.metainfo.xml ├── rpcs3.plist.in ├── rpcs3.png ├── rpcs3.rc ├── rpcs3.svg ├── rpcs3.vcxproj ├── rpcs3.vcxproj.filters ├── rpcs3_version.cpp ├── rpcs3_version.h ├── stb_image.cpp ├── stdafx.cpp ├── stdafx.h ├── util │ ├── asm.hpp │ ├── atomic.cpp │ ├── atomic.hpp │ ├── auto_typemap.hpp │ ├── cpu_stats.cpp │ ├── cpu_stats.hpp │ ├── dyn_lib.cpp │ ├── dyn_lib.hpp │ ├── endian.hpp │ ├── fifo_mutex.hpp │ ├── fixed_typemap.hpp │ ├── fnv_hash.hpp │ ├── init_mutex.hpp │ ├── logs.cpp │ ├── logs.hpp │ ├── media_utils.cpp │ ├── media_utils.h │ ├── serialization.hpp │ ├── shared_ptr.hpp │ ├── slow_mutex.hpp │ ├── sysinfo.cpp │ ├── sysinfo.hpp │ ├── to_endian.hpp │ ├── typeindices.hpp │ ├── types.hpp │ ├── v128.hpp │ ├── v128sse.hpp │ ├── vm.hpp │ ├── vm_native.cpp │ ├── yaml.cpp │ └── yaml.hpp └── windows.qrc └── usertype.dat /.ci/build-freebsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.ci/build-freebsd.sh -------------------------------------------------------------------------------- /.ci/build-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.ci/build-linux.sh -------------------------------------------------------------------------------- /.ci/build-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.ci/build-mac.sh -------------------------------------------------------------------------------- /.ci/deploy-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.ci/deploy-linux.sh -------------------------------------------------------------------------------- /.ci/deploy-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.ci/deploy-windows.sh -------------------------------------------------------------------------------- /.ci/docker.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.ci/docker.env -------------------------------------------------------------------------------- /.ci/export-azure-vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.ci/export-azure-vars.sh -------------------------------------------------------------------------------- /.ci/export-cirrus-vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.ci/export-cirrus-vars.sh -------------------------------------------------------------------------------- /.ci/get_keys-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.ci/get_keys-windows.sh -------------------------------------------------------------------------------- /.ci/github-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.ci/github-upload.sh -------------------------------------------------------------------------------- /.ci/install-freebsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.ci/install-freebsd.sh -------------------------------------------------------------------------------- /.ci/setup-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.ci/setup-windows.sh -------------------------------------------------------------------------------- /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.gdbinit -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: Nekotekina 2 | custom: https://rpcs3.net/alipay 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.github/ISSUE_TEMPLATE/2-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PR-BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.github/PR-BUILD.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rdparty/7z/7zlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/7zlib.vcxproj -------------------------------------------------------------------------------- /3rdparty/7z/7zlib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/7zlib.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/7z/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/7z/src/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/7z.h -------------------------------------------------------------------------------- /3rdparty/7z/src/7zAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/7zAlloc.c -------------------------------------------------------------------------------- /3rdparty/7z/src/7zAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/7zAlloc.h -------------------------------------------------------------------------------- /3rdparty/7z/src/7zArcIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/7zArcIn.c -------------------------------------------------------------------------------- /3rdparty/7z/src/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/7zBuf.c -------------------------------------------------------------------------------- /3rdparty/7z/src/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/7zBuf.h -------------------------------------------------------------------------------- /3rdparty/7z/src/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/7zBuf2.c -------------------------------------------------------------------------------- /3rdparty/7z/src/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/7zCrc.c -------------------------------------------------------------------------------- /3rdparty/7z/src/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/7zCrc.h -------------------------------------------------------------------------------- /3rdparty/7z/src/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/7zCrcOpt.c -------------------------------------------------------------------------------- /3rdparty/7z/src/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/7zDec.c -------------------------------------------------------------------------------- /3rdparty/7z/src/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/7zFile.c -------------------------------------------------------------------------------- /3rdparty/7z/src/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/7zFile.h -------------------------------------------------------------------------------- /3rdparty/7z/src/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/7zStream.c -------------------------------------------------------------------------------- /3rdparty/7z/src/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/7zTypes.h -------------------------------------------------------------------------------- /3rdparty/7z/src/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/7zVersion.h -------------------------------------------------------------------------------- /3rdparty/7z/src/7zVersion.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/7zVersion.rc -------------------------------------------------------------------------------- /3rdparty/7z/src/Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Aes.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Aes.h -------------------------------------------------------------------------------- /3rdparty/7z/src/AesOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/AesOpt.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Alloc.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Alloc.h -------------------------------------------------------------------------------- /3rdparty/7z/src/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Bcj2.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Bcj2.h -------------------------------------------------------------------------------- /3rdparty/7z/src/Bcj2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Bcj2Enc.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Bra.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Bra.h -------------------------------------------------------------------------------- /3rdparty/7z/src/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Bra86.c -------------------------------------------------------------------------------- /3rdparty/7z/src/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/BraIA64.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Compiler.h -------------------------------------------------------------------------------- /3rdparty/7z/src/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/CpuArch.c -------------------------------------------------------------------------------- /3rdparty/7z/src/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/CpuArch.h -------------------------------------------------------------------------------- /3rdparty/7z/src/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Delta.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Delta.h -------------------------------------------------------------------------------- /3rdparty/7z/src/DllSecur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/DllSecur.c -------------------------------------------------------------------------------- /3rdparty/7z/src/DllSecur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/DllSecur.h -------------------------------------------------------------------------------- /3rdparty/7z/src/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/LzFind.c -------------------------------------------------------------------------------- /3rdparty/7z/src/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/LzFind.h -------------------------------------------------------------------------------- /3rdparty/7z/src/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/LzFindMt.c -------------------------------------------------------------------------------- /3rdparty/7z/src/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/LzFindMt.h -------------------------------------------------------------------------------- /3rdparty/7z/src/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/LzHash.h -------------------------------------------------------------------------------- /3rdparty/7z/src/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Lzma2Dec.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Lzma2Dec.h -------------------------------------------------------------------------------- /3rdparty/7z/src/Lzma2DecMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Lzma2DecMt.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Lzma2DecMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Lzma2DecMt.h -------------------------------------------------------------------------------- /3rdparty/7z/src/Lzma2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Lzma2Enc.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Lzma2Enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Lzma2Enc.h -------------------------------------------------------------------------------- /3rdparty/7z/src/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Lzma86.h -------------------------------------------------------------------------------- /3rdparty/7z/src/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Lzma86Dec.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Lzma86Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Lzma86Enc.c -------------------------------------------------------------------------------- /3rdparty/7z/src/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/LzmaDec.c -------------------------------------------------------------------------------- /3rdparty/7z/src/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/LzmaDec.h -------------------------------------------------------------------------------- /3rdparty/7z/src/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/LzmaEnc.c -------------------------------------------------------------------------------- /3rdparty/7z/src/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/LzmaEnc.h -------------------------------------------------------------------------------- /3rdparty/7z/src/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/LzmaLib.c -------------------------------------------------------------------------------- /3rdparty/7z/src/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/LzmaLib.h -------------------------------------------------------------------------------- /3rdparty/7z/src/MtCoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/MtCoder.c -------------------------------------------------------------------------------- /3rdparty/7z/src/MtCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/MtCoder.h -------------------------------------------------------------------------------- /3rdparty/7z/src/MtDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/MtDec.c -------------------------------------------------------------------------------- /3rdparty/7z/src/MtDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/MtDec.h -------------------------------------------------------------------------------- /3rdparty/7z/src/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Ppmd.h -------------------------------------------------------------------------------- /3rdparty/7z/src/Ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Ppmd7.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Ppmd7.h -------------------------------------------------------------------------------- /3rdparty/7z/src/Ppmd7Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Ppmd7Dec.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Ppmd7Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Ppmd7Enc.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Precomp.h -------------------------------------------------------------------------------- /3rdparty/7z/src/RotateDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/RotateDefs.h -------------------------------------------------------------------------------- /3rdparty/7z/src/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Sha256.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Sha256.h -------------------------------------------------------------------------------- /3rdparty/7z/src/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Sort.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Sort.h -------------------------------------------------------------------------------- /3rdparty/7z/src/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Threads.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Threads.h -------------------------------------------------------------------------------- /3rdparty/7z/src/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Xz.c -------------------------------------------------------------------------------- /3rdparty/7z/src/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/Xz.h -------------------------------------------------------------------------------- /3rdparty/7z/src/XzCrc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/XzCrc64.c -------------------------------------------------------------------------------- /3rdparty/7z/src/XzCrc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/XzCrc64.h -------------------------------------------------------------------------------- /3rdparty/7z/src/XzCrc64Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/XzCrc64Opt.c -------------------------------------------------------------------------------- /3rdparty/7z/src/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/XzDec.c -------------------------------------------------------------------------------- /3rdparty/7z/src/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/XzEnc.c -------------------------------------------------------------------------------- /3rdparty/7z/src/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/XzEnc.h -------------------------------------------------------------------------------- /3rdparty/7z/src/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/7z/src/XzIn.c -------------------------------------------------------------------------------- /3rdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/GL/glext.h -------------------------------------------------------------------------------- /3rdparty/GL/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/GL/khrplatform.h -------------------------------------------------------------------------------- /3rdparty/GPUOpen/include/ffx_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/GPUOpen/include/ffx_a.h -------------------------------------------------------------------------------- /3rdparty/GPUOpen/include/ffx_fsr1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/GPUOpen/include/ffx_fsr1.h -------------------------------------------------------------------------------- /3rdparty/GPUOpen/include/vk_mem_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/GPUOpen/include/vk_mem_alloc.h -------------------------------------------------------------------------------- /3rdparty/OpenAL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/OpenAL/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/OpenAL/include/al.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/OpenAL/include/al.h -------------------------------------------------------------------------------- /3rdparty/OpenAL/include/alc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/OpenAL/include/alc.h -------------------------------------------------------------------------------- /3rdparty/OpenAL/include/alext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/OpenAL/include/alext.h -------------------------------------------------------------------------------- /3rdparty/OpenAL/include/efx-creative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/OpenAL/include/efx-creative.h -------------------------------------------------------------------------------- /3rdparty/OpenAL/include/efx-presets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/OpenAL/include/efx-presets.h -------------------------------------------------------------------------------- /3rdparty/OpenAL/include/efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/OpenAL/include/efx.h -------------------------------------------------------------------------------- /3rdparty/OpenAL/libs/Win64/OpenAL32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/OpenAL/libs/Win64/OpenAL32.def -------------------------------------------------------------------------------- /3rdparty/OpenAL/libs/Win64/OpenAL32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/OpenAL/libs/Win64/OpenAL32.lib -------------------------------------------------------------------------------- /3rdparty/SPIRV/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /x64 3 | -------------------------------------------------------------------------------- /3rdparty/SPIRV/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/SPIRV/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/SPIRV/spirv.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/SPIRV/spirv.vcxproj -------------------------------------------------------------------------------- /3rdparty/SPIRV/spirv.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/SPIRV/spirv.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/asmjit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/asmjit/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/asmjit/asmjit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/asmjit/asmjit.vcxproj -------------------------------------------------------------------------------- /3rdparty/asmjit/asmjit.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/asmjit/asmjit.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/cubeb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/cubeb/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/cubeb/extra/cubeb_export.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define CUBEB_EXPORT 4 | -------------------------------------------------------------------------------- /3rdparty/cubeb/libcubeb.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/cubeb/libcubeb.vcxproj -------------------------------------------------------------------------------- /3rdparty/cubeb/libcubeb.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/cubeb/libcubeb.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/curl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/curl/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/curl/extra/wolfssl/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/curl/extra/wolfssl/options.h -------------------------------------------------------------------------------- /3rdparty/curl/libcurl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/curl/libcurl.vcxproj -------------------------------------------------------------------------------- /3rdparty/curl/libcurl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/curl/libcurl.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/discord-rpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/discord-rpc/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/glslang/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /x64 3 | -------------------------------------------------------------------------------- /3rdparty/glslang/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/glslang/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/glslang/glslang.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/glslang/glslang.vcxproj -------------------------------------------------------------------------------- /3rdparty/hidapi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/hidapi/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/hidapi/hidapi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/hidapi/hidapi.vcxproj -------------------------------------------------------------------------------- /3rdparty/hidapi/hidapi.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/hidapi/hidapi.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/libpng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/libpng/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/libpng/libpng.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/libpng/libpng.vcxproj -------------------------------------------------------------------------------- /3rdparty/libpng/pnglibconf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/libpng/pnglibconf.vcxproj -------------------------------------------------------------------------------- /3rdparty/libusb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/libusb/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/libusb/config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/libusb/config.cmake -------------------------------------------------------------------------------- /3rdparty/libusb/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/libusb/config.h.cmake -------------------------------------------------------------------------------- /3rdparty/libusb/libusb-1.0.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/libusb/libusb-1.0.pc.cmake -------------------------------------------------------------------------------- /3rdparty/libusb/libusb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/libusb/libusb.cmake -------------------------------------------------------------------------------- /3rdparty/libusb/libusb_static.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/libusb/libusb_static.vcxproj -------------------------------------------------------------------------------- /3rdparty/libusb/os.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/libusb/os.cmake -------------------------------------------------------------------------------- /3rdparty/llvm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/llvm.cmake -------------------------------------------------------------------------------- /3rdparty/qt5.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/qt5.cmake -------------------------------------------------------------------------------- /3rdparty/stblib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/stblib/LICENSE -------------------------------------------------------------------------------- /3rdparty/stblib/include/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/stblib/include/stb_image.h -------------------------------------------------------------------------------- /3rdparty/stblib/include/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/stblib/include/stb_truetype.h -------------------------------------------------------------------------------- /3rdparty/wolfssl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/wolfssl/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/wolfssl/wolfssl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/wolfssl/wolfssl.vcxproj -------------------------------------------------------------------------------- /3rdparty/xxhash.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/xxhash.vcxproj -------------------------------------------------------------------------------- /3rdparty/yaml-cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/yaml-cpp/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/yaml-cpp/yaml-cpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/yaml-cpp/yaml-cpp.vcxproj -------------------------------------------------------------------------------- /3rdparty/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/zlib/zlib.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/zlib/zlib.props -------------------------------------------------------------------------------- /3rdparty/zlib/zlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/3rdparty/zlib/zlib.vcxproj -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/README.md -------------------------------------------------------------------------------- /Utilities/BitField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/BitField.h -------------------------------------------------------------------------------- /Utilities/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/CRC.h -------------------------------------------------------------------------------- /Utilities/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/Config.cpp -------------------------------------------------------------------------------- /Utilities/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/Config.h -------------------------------------------------------------------------------- /Utilities/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/File.cpp -------------------------------------------------------------------------------- /Utilities/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/File.h -------------------------------------------------------------------------------- /Utilities/JIT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/JIT.cpp -------------------------------------------------------------------------------- /Utilities/JIT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/JIT.h -------------------------------------------------------------------------------- /Utilities/LUrlParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/LUrlParser.cpp -------------------------------------------------------------------------------- /Utilities/LUrlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/LUrlParser.h -------------------------------------------------------------------------------- /Utilities/StrFmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/StrFmt.cpp -------------------------------------------------------------------------------- /Utilities/StrFmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/StrFmt.h -------------------------------------------------------------------------------- /Utilities/StrUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/StrUtil.h -------------------------------------------------------------------------------- /Utilities/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/Thread.cpp -------------------------------------------------------------------------------- /Utilities/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/Thread.h -------------------------------------------------------------------------------- /Utilities/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/Timer.h -------------------------------------------------------------------------------- /Utilities/address_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/address_range.h -------------------------------------------------------------------------------- /Utilities/bin_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/bin_patch.cpp -------------------------------------------------------------------------------- /Utilities/bin_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/bin_patch.h -------------------------------------------------------------------------------- /Utilities/bit_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/bit_set.h -------------------------------------------------------------------------------- /Utilities/cfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/cfmt.h -------------------------------------------------------------------------------- /Utilities/cheat_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/cheat_info.cpp -------------------------------------------------------------------------------- /Utilities/cheat_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/cheat_info.h -------------------------------------------------------------------------------- /Utilities/cond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/cond.cpp -------------------------------------------------------------------------------- /Utilities/cond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/cond.h -------------------------------------------------------------------------------- /Utilities/date_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/date_time.h -------------------------------------------------------------------------------- /Utilities/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/geometry.h -------------------------------------------------------------------------------- /Utilities/git-version-gen.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/git-version-gen.cmd -------------------------------------------------------------------------------- /Utilities/lockless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/lockless.h -------------------------------------------------------------------------------- /Utilities/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/mutex.cpp -------------------------------------------------------------------------------- /Utilities/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/mutex.h -------------------------------------------------------------------------------- /Utilities/rXml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/rXml.cpp -------------------------------------------------------------------------------- /Utilities/rXml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/rXml.h -------------------------------------------------------------------------------- /Utilities/sema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/sema.cpp -------------------------------------------------------------------------------- /Utilities/sema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/sema.h -------------------------------------------------------------------------------- /Utilities/simple_ringbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/simple_ringbuf.cpp -------------------------------------------------------------------------------- /Utilities/simple_ringbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/simple_ringbuf.h -------------------------------------------------------------------------------- /Utilities/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/sync.h -------------------------------------------------------------------------------- /Utilities/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/version.cpp -------------------------------------------------------------------------------- /Utilities/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/Utilities/version.h -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /bin/GuiConfigs/Classic (Bright).qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/GuiConfigs/Classic (Bright).qss -------------------------------------------------------------------------------- /bin/GuiConfigs/Envy.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/GuiConfigs/Envy.qss -------------------------------------------------------------------------------- /bin/GuiConfigs/Kuroi (Dark) by Ani.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/GuiConfigs/Kuroi (Dark) by Ani.qss -------------------------------------------------------------------------------- /bin/GuiConfigs/Skyline (Nightfall).qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/GuiConfigs/Skyline (Nightfall).qss -------------------------------------------------------------------------------- /bin/GuiConfigs/Skyline.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/GuiConfigs/Skyline.qss -------------------------------------------------------------------------------- /bin/GuiConfigs/YoRHa by Ani.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/GuiConfigs/YoRHa by Ani.qss -------------------------------------------------------------------------------- /bin/GuiConfigs/YoRHa-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/GuiConfigs/YoRHa-background.jpg -------------------------------------------------------------------------------- /bin/GuiConfigs/kot-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/GuiConfigs/kot-bg.jpg -------------------------------------------------------------------------------- /bin/GuiConfigs/list_arrow_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/GuiConfigs/list_arrow_blue.png -------------------------------------------------------------------------------- /bin/GuiConfigs/list_arrow_down_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/GuiConfigs/list_arrow_down_blue.png -------------------------------------------------------------------------------- /bin/GuiConfigs/list_arrow_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/GuiConfigs/list_arrow_green.png -------------------------------------------------------------------------------- /bin/GuiConfigs/list_arrow_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/GuiConfigs/list_arrow_white.png -------------------------------------------------------------------------------- /bin/Icons/ui/L1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/L1.png -------------------------------------------------------------------------------- /bin/Icons/ui/L2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/L2.png -------------------------------------------------------------------------------- /bin/Icons/ui/R1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/R1.png -------------------------------------------------------------------------------- /bin/Icons/ui/R2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/R2.png -------------------------------------------------------------------------------- /bin/Icons/ui/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/circle.png -------------------------------------------------------------------------------- /bin/Icons/ui/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/cross.png -------------------------------------------------------------------------------- /bin/Icons/ui/dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/dpad.png -------------------------------------------------------------------------------- /bin/Icons/ui/dpad_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/dpad_down.png -------------------------------------------------------------------------------- /bin/Icons/ui/dpad_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/dpad_left.png -------------------------------------------------------------------------------- /bin/Icons/ui/dpad_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/dpad_right.png -------------------------------------------------------------------------------- /bin/Icons/ui/dpad_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/dpad_up.png -------------------------------------------------------------------------------- /bin/Icons/ui/fade_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/fade_bottom.png -------------------------------------------------------------------------------- /bin/Icons/ui/fade_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/fade_top.png -------------------------------------------------------------------------------- /bin/Icons/ui/left_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/left_stick.png -------------------------------------------------------------------------------- /bin/Icons/ui/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/new.png -------------------------------------------------------------------------------- /bin/Icons/ui/right_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/right_stick.png -------------------------------------------------------------------------------- /bin/Icons/ui/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/save.png -------------------------------------------------------------------------------- /bin/Icons/ui/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/select.png -------------------------------------------------------------------------------- /bin/Icons/ui/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/square.png -------------------------------------------------------------------------------- /bin/Icons/ui/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/start.png -------------------------------------------------------------------------------- /bin/Icons/ui/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/Icons/ui/triangle.png -------------------------------------------------------------------------------- /bin/OpenAL32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/OpenAL32.dll -------------------------------------------------------------------------------- /bin/git/README.md: -------------------------------------------------------------------------------- 1 | Cached data from GitHub API. 2 | -------------------------------------------------------------------------------- /bin/git/commits.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/git/commits.lst -------------------------------------------------------------------------------- /bin/xaudio2_9redist.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/bin/xaudio2_9redist.dll -------------------------------------------------------------------------------- /git-clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/git-clang-format -------------------------------------------------------------------------------- /llvm_build/llvm_build.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/llvm_build/llvm_build.vcxproj -------------------------------------------------------------------------------- /llvm_build/llvm_build.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/llvm_build/llvm_build.vcxproj.filters -------------------------------------------------------------------------------- /llvm_build/llvm_build_clang_cl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/llvm_build/llvm_build_clang_cl.vcxproj -------------------------------------------------------------------------------- /pre-commit.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/pre-commit.readme -------------------------------------------------------------------------------- /rpcs3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3.sln -------------------------------------------------------------------------------- /rpcs3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/CMakeLists.txt -------------------------------------------------------------------------------- /rpcs3/Crypto/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/aes.cpp -------------------------------------------------------------------------------- /rpcs3/Crypto/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/aes.h -------------------------------------------------------------------------------- /rpcs3/Crypto/aesni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/aesni.cpp -------------------------------------------------------------------------------- /rpcs3/Crypto/aesni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/aesni.h -------------------------------------------------------------------------------- /rpcs3/Crypto/ec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/ec.cpp -------------------------------------------------------------------------------- /rpcs3/Crypto/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/ec.h -------------------------------------------------------------------------------- /rpcs3/Crypto/key_vault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/key_vault.cpp -------------------------------------------------------------------------------- /rpcs3/Crypto/key_vault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/key_vault.h -------------------------------------------------------------------------------- /rpcs3/Crypto/lz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/lz.cpp -------------------------------------------------------------------------------- /rpcs3/Crypto/lz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/lz.h -------------------------------------------------------------------------------- /rpcs3/Crypto/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/md5.cpp -------------------------------------------------------------------------------- /rpcs3/Crypto/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/md5.h -------------------------------------------------------------------------------- /rpcs3/Crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/sha1.cpp -------------------------------------------------------------------------------- /rpcs3/Crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/sha1.h -------------------------------------------------------------------------------- /rpcs3/Crypto/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/sha256.cpp -------------------------------------------------------------------------------- /rpcs3/Crypto/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/sha256.h -------------------------------------------------------------------------------- /rpcs3/Crypto/unedat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/unedat.cpp -------------------------------------------------------------------------------- /rpcs3/Crypto/unedat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/unedat.h -------------------------------------------------------------------------------- /rpcs3/Crypto/unpkg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/unpkg.cpp -------------------------------------------------------------------------------- /rpcs3/Crypto/unpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/unpkg.h -------------------------------------------------------------------------------- /rpcs3/Crypto/unself.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/unself.cpp -------------------------------------------------------------------------------- /rpcs3/Crypto/unself.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/unself.h -------------------------------------------------------------------------------- /rpcs3/Crypto/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/utils.cpp -------------------------------------------------------------------------------- /rpcs3/Crypto/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Crypto/utils.h -------------------------------------------------------------------------------- /rpcs3/Cubeb.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Cubeb.vcxproj -------------------------------------------------------------------------------- /rpcs3/Cubeb.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Cubeb.vcxproj.filters -------------------------------------------------------------------------------- /rpcs3/Emu/Audio/AudioBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Audio/AudioBackend.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Audio/AudioBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Audio/AudioBackend.h -------------------------------------------------------------------------------- /rpcs3/Emu/Audio/AudioDumper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Audio/AudioDumper.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Audio/AudioDumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Audio/AudioDumper.h -------------------------------------------------------------------------------- /rpcs3/Emu/Audio/Cubeb/CubebBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Audio/Cubeb/CubebBackend.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Audio/Cubeb/CubebBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Audio/Cubeb/CubebBackend.h -------------------------------------------------------------------------------- /rpcs3/Emu/Audio/FAudio/FAudioBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Audio/FAudio/FAudioBackend.h -------------------------------------------------------------------------------- /rpcs3/Emu/Audio/Null/NullAudioBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Audio/Null/NullAudioBackend.h -------------------------------------------------------------------------------- /rpcs3/Emu/Audio/audio_device_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Audio/audio_device_listener.h -------------------------------------------------------------------------------- /rpcs3/Emu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/CMakeLists.txt -------------------------------------------------------------------------------- /rpcs3/Emu/CPU/CPUDisAsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/CPU/CPUDisAsm.h -------------------------------------------------------------------------------- /rpcs3/Emu/CPU/CPUThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/CPU/CPUThread.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/CPU/CPUThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/CPU/CPUThread.h -------------------------------------------------------------------------------- /rpcs3/Emu/CPU/CPUTranslator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/CPU/CPUTranslator.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/CPU/CPUTranslator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/CPU/CPUTranslator.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Common.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/ErrorCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/ErrorCodes.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/MFC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/MFC.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/MFC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/MFC.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/StaticHLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/StaticHLE.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/StaticHLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/StaticHLE.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellAdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellAdec.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellAdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellAdec.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellAtrac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellAtrac.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellAtrac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellAtrac.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellAtracMulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellAtracMulti.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellAudio.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellAudio.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellAudioIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellAudioIn.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellAudioOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellAudioOut.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellAudioOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellAudioOut.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellBgdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellBgdl.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellBgdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellBgdl.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellCamera.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellCamera.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellCelp8Enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellCelp8Enc.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellCelp8Enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellCelp8Enc.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellCelpEnc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellCelpEnc.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellCelpEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellCelpEnc.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellDaisy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellDaisy.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellDaisy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellDaisy.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellDmux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellDmux.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellDmux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellDmux.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellFiber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellFiber.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellFiber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellFiber.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellFont.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellFont.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellFontFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellFontFT.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellFontFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellFontFT.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellFs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellFs.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellFs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellFs.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellGame.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellGame.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellGameExec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellGameExec.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellGcmSys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellGcmSys.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellGcmSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellGcmSys.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellGem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellGem.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellGem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellGem.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellGifDec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellGifDec.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellGifDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellGifDec.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellHttp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellHttp.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellHttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellHttp.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellHttpUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellHttpUtil.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellHttpUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellHttpUtil.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellImeJp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellImeJp.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellImeJp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellImeJp.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellJpgDec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellJpgDec.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellJpgDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellJpgDec.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellJpgEnc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellJpgEnc.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellJpgEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellJpgEnc.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellKb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellKb.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellKb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellKb.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellKey2char.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellKey2char.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellL10n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellL10n.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellL10n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellL10n.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellLibprof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellLibprof.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellMic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellMic.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellMic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellMic.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellMouse.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellMouse.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellMsgDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellMsgDialog.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellMusic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellMusic.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellMusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellMusic.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellNetAoi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellNetAoi.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellNetCtl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellNetCtl.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellNetCtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellNetCtl.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellOskDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellOskDialog.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellOvis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellOvis.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellPad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellPad.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellPad.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellPamf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellPamf.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellPamf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellPamf.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellPng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellPng.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellPngDec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellPngDec.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellPngDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellPngDec.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellPngEnc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellPngEnc.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellPngEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellPngEnc.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellPrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellPrint.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellRec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellRec.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellRemotePlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellRemotePlay.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellResc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellResc.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellResc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellResc.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellRtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellRtc.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellRtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellRtc.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellRtcAlarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellRtcAlarm.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellRudp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellRudp.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellRudp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellRudp.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSail.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSail.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSailRec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSailRec.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSaveData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSaveData.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSaveData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSaveData.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellScreenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellScreenshot.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSearch.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSearch.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSheap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSheap.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSpudll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSpudll.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSpudll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSpudll.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSpurs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSpurs.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSpurs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSpurs.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSpursJq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSpursJq.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSpursJq.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSpursSpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSpursSpu.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSsl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSsl.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSsl.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellStorage.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellStorage.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSubDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSubDisplay.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSync.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSync.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSync2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSync2.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSync2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSync2.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSysCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSysCache.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSysconf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSysconf.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSysconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSysconf.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSysutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSysutil.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellSysutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellSysutil.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellUsbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellUsbd.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellUsbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellUsbd.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellUsbpspcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellUsbpspcm.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellUserInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellUserInfo.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellUserInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellUserInfo.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellVdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellVdec.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellVdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellVdec.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellVideoOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellVideoOut.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellVideoOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellVideoOut.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellVoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellVoice.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellVoice.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellVpost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellVpost.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellVpost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellVpost.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/cellWebBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/cellWebBrowser.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/libad_async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/libad_async.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/libad_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/libad_core.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/libfs_utility_init.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/libmedi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/libmedi.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/libmixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/libmixer.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/libmixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/libmixer.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/libsnd3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/libsnd3.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/libsnd3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/libsnd3.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/libsynth2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/libsynth2.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/libsynth2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/libsynth2.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sceNp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sceNp.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sceNp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sceNp.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sceNp2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sceNp2.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sceNp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sceNp2.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sceNpClans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sceNpClans.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sceNpClans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sceNpClans.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sceNpCommerce2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sceNpCommerce2.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sceNpSns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sceNpSns.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sceNpSns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sceNpSns.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sceNpTrophy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sceNpTrophy.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sceNpTrophy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sceNpTrophy.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sceNpTus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sceNpTus.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sceNpTus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sceNpTus.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sceNpUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sceNpUtil.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sceNpUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sceNpUtil.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sysPrxForUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sysPrxForUser.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sys_crashdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sys_crashdump.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sys_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sys_game.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sys_heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sys_heap.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sys_io_.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sys_io_.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sys_libc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sys_libc.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sys_libc_.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sys_libc_.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sys_lv2dbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sys_lv2dbg.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sys_lv2dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sys_lv2dbg.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sys_lwcond_.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sys_lwcond_.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sys_lwmutex_.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sys_lwmutex_.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sys_mempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sys_mempool.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sys_net_.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sys_net_.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sys_net_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sys_net_.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sys_prx_.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sys_prx_.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/Modules/sys_spu_.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/Modules/sys_spu_.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/PPCDisAsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/PPCDisAsm.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/PPUAnalyser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/PPUAnalyser.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/PPUAnalyser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/PPUAnalyser.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/PPUCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/PPUCallback.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/PPUDisAsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/PPUDisAsm.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/PPUDisAsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/PPUDisAsm.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/PPUFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/PPUFunction.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/PPUFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/PPUFunction.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/PPUInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/PPUInterpreter.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/PPUInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/PPUInterpreter.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/PPUModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/PPUModule.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/PPUModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/PPUModule.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/PPUOpcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/PPUOpcodes.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/PPUThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/PPUThread.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/PPUThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/PPUThread.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/PPUTranslator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/PPUTranslator.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/PPUTranslator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/PPUTranslator.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/RawSPUThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/RawSPUThread.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/RawSPUThread.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "SPUThread.h" 4 | -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/SPUASMJITRecompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/SPUASMJITRecompiler.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/SPUAnalyser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/SPUAnalyser.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/SPUAnalyser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/SPUAnalyser.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/SPUDisAsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/SPUDisAsm.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/SPUDisAsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/SPUDisAsm.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/SPUInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/SPUInterpreter.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/SPUInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/SPUInterpreter.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/SPUOpcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/SPUOpcodes.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/SPURecompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/SPURecompiler.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/SPURecompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/SPURecompiler.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/SPUThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/SPUThread.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/SPUThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/SPUThread.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/lv2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/lv2.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_bdemu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_bdemu.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_bdemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_bdemu.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_btsetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_btsetting.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_btsetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_btsetting.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_cond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_cond.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_cond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_cond.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_config.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_config.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_console.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_console.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_dbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_dbg.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_dbg.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_event.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_event.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_event_flag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_event_flag.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_event_flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_event_flag.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_fs.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_fs.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_gamepad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_gamepad.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_gamepad.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_gpio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_gpio.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_gpio.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_hid.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_hid.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_interrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_interrupt.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_interrupt.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_io.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_io.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_lwcond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_lwcond.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_lwcond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_lwcond.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_lwmutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_lwmutex.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_lwmutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_lwmutex.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_memory.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_memory.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_mmapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_mmapper.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_mmapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_mmapper.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_mutex.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_mutex.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_net.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_net.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_overlay.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_overlay.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_ppu_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_ppu_thread.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_ppu_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_ppu_thread.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_process.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_process.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_prx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_prx.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_prx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_prx.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_rsx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_rsx.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_rsx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_rsx.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_rsxaudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_rsxaudio.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_rsxaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_rsxaudio.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_rwlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_rwlock.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_rwlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_rwlock.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_semaphore.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_semaphore.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_sm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_sm.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_sm.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_spu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_spu.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_spu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_spu.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_ss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_ss.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_ss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_ss.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_storage.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_storage.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_sync.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_time.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_time.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_timer.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_timer.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_trace.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_trace.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_tty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_tty.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_tty.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_uart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_uart.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_uart.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_usbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_usbd.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_usbd.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_vm.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/lv2/sys_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/lv2/sys_vm.h -------------------------------------------------------------------------------- /rpcs3/Emu/Cell/timers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Cell/timers.hpp -------------------------------------------------------------------------------- /rpcs3/Emu/GDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/GDB.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/GDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/GDB.h -------------------------------------------------------------------------------- /rpcs3/Emu/GameInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/GameInfo.h -------------------------------------------------------------------------------- /rpcs3/Emu/IPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/IPC.h -------------------------------------------------------------------------------- /rpcs3/Emu/IdManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/IdManager.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/IdManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/IdManager.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/Buzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/Buzz.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Io/Buzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/Buzz.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/GHLtar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/GHLtar.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Io/GHLtar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/GHLtar.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/Keyboard.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/KeyboardHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/KeyboardHandler.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Io/KeyboardHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/KeyboardHandler.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/MouseHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/MouseHandler.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/Null/NullMouseHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/Null/NullMouseHandler.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/Null/NullPadHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/Null/NullPadHandler.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/PadHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/PadHandler.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Io/PadHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/PadHandler.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/Skylander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/Skylander.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Io/Skylander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/Skylander.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/Turntable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/Turntable.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Io/Turntable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/Turntable.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/camera_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/camera_config.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Io/camera_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/camera_config.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/camera_handler_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/camera_handler_base.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/interception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/interception.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Io/interception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/interception.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/pad_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/pad_config.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Io/pad_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/pad_config.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/pad_config_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/pad_config_types.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Io/pad_config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/pad_config_types.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/pad_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/pad_types.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/usb_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/usb_device.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Io/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/usb_device.h -------------------------------------------------------------------------------- /rpcs3/Emu/Io/usio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/usio.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Io/usio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Io/usio.h -------------------------------------------------------------------------------- /rpcs3/Emu/Memory/vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Memory/vm.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/Memory/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Memory/vm.h -------------------------------------------------------------------------------- /rpcs3/Emu/Memory/vm_locking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Memory/vm_locking.h -------------------------------------------------------------------------------- /rpcs3/Emu/Memory/vm_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Memory/vm_ptr.h -------------------------------------------------------------------------------- /rpcs3/Emu/Memory/vm_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Memory/vm_ref.h -------------------------------------------------------------------------------- /rpcs3/Emu/Memory/vm_reservation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Memory/vm_reservation.h -------------------------------------------------------------------------------- /rpcs3/Emu/Memory/vm_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/Memory/vm_var.h -------------------------------------------------------------------------------- /rpcs3/Emu/NP/fb_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/fb_helpers.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/NP/np_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/np_allocator.h -------------------------------------------------------------------------------- /rpcs3/Emu/NP/np_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/np_cache.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/NP/np_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/np_cache.h -------------------------------------------------------------------------------- /rpcs3/Emu/NP/np_contexts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/np_contexts.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/NP/np_contexts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/np_contexts.h -------------------------------------------------------------------------------- /rpcs3/Emu/NP/np_dnshook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/np_dnshook.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/NP/np_dnshook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/np_dnshook.h -------------------------------------------------------------------------------- /rpcs3/Emu/NP/np_event_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/np_event_data.h -------------------------------------------------------------------------------- /rpcs3/Emu/NP/np_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/np_handler.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/NP/np_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/np_handler.h -------------------------------------------------------------------------------- /rpcs3/Emu/NP/np_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/np_helpers.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/NP/np_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/np_helpers.h -------------------------------------------------------------------------------- /rpcs3/Emu/NP/np_notifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/np_notifications.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/NP/np_requests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/np_requests.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/NP/np_structs_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/np_structs_extra.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/NP/np_structs_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/np_structs_extra.h -------------------------------------------------------------------------------- /rpcs3/Emu/NP/rpcn_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/rpcn_client.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/NP/rpcn_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/rpcn_client.h -------------------------------------------------------------------------------- /rpcs3/Emu/NP/rpcn_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/rpcn_config.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/NP/rpcn_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/rpcn_config.h -------------------------------------------------------------------------------- /rpcs3/Emu/NP/signaling_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/signaling_handler.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/NP/signaling_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/NP/signaling_handler.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Capture/rsx_capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Capture/rsx_capture.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Capture/rsx_capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Capture/rsx_capture.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Capture/rsx_replay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Capture/rsx_replay.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Capture/rsx_replay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Capture/rsx_replay.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Capture/rsx_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Capture/rsx_trace.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Common/BufferUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Common/BufferUtils.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Common/BufferUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Common/BufferUtils.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Common/GLSL.std.450.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Common/GLSL.std.450.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Common/TextGlyphs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Common/TextGlyphs.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Common/TextureUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Common/TextureUtils.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Common/TextureUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Common/TextureUtils.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Common/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Common/bitfield.hpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Common/simple_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Common/simple_array.hpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Common/spirv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Common/spirv.hpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Common/surface_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Common/surface_store.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Common/surface_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Common/surface_utils.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Common/texture_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Common/texture_cache.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/GCM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/GCM.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/GSFrameBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/GSFrameBase.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Null/NullGSRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Null/NullGSRender.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Null/NullGSRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Null/NullGSRender.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Overlays/overlay_osk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Overlays/overlay_osk.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Overlays/overlays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Overlays/overlays.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Overlays/overlays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Overlays/overlays.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Program/GLSLCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Program/GLSLCommon.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Program/GLSLCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Program/GLSLCommon.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Program/GLSLTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Program/GLSLTypes.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Program/ShaderParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Program/ShaderParam.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/Program/program_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/Program/program_util.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/RSXDisAsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/RSXDisAsm.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/RSXDisAsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/RSXDisAsm.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/RSXFIFO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/RSXFIFO.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/RSXFIFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/RSXFIFO.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/RSXOffload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/RSXOffload.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/RSXOffload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/RSXOffload.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/RSXTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/RSXTexture.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/RSXTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/RSXTexture.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/RSXThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/RSXThread.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/RSXThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/RSXThread.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKAsyncScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKAsyncScheduler.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKAsyncScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKAsyncScheduler.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKCommandStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKCommandStream.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKCommandStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKCommandStream.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKCommonDecompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKCommonDecompiler.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKCompute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKCompute.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKCompute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKCompute.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKDMA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKDMA.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKDMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKDMA.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKDraw.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKFormats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKFormats.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKFormats.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKFragmentProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKFragmentProgram.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKFramebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKFramebuffer.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKFramebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKFramebuffer.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKGSRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKGSRender.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKGSRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKGSRender.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKHelpers.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKHelpers.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKMemAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKMemAlloc.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKOverlays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKOverlays.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKOverlays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKOverlays.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKPipelineCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKPipelineCompiler.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKPresent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKPresent.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKProgramBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKProgramBuffer.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKProgramPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKProgramPipeline.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKQueryPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKQueryPool.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKQueryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKQueryPool.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKRenderPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKRenderPass.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKRenderPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKRenderPass.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKRenderTargets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKRenderTargets.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKRenderTargets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKRenderTargets.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKResolveHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKResolveHelper.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKResolveHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKResolveHelper.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKResourceManager.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKTextOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKTextOut.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKTexture.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKTextureCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKTextureCache.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKTextureCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKTextureCache.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKVertexBuffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKVertexBuffers.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKVertexProgram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKVertexProgram.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VKVertexProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VKVertexProgram.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/VulkanAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/VulkanAPI.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/upscalers/fsr_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/upscalers/fsr_pass.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/barriers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/barriers.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/barriers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/barriers.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/chip_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/chip_class.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/commands.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/commands.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/data_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/data_heap.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/device.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/device.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/image.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/image.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/instance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/instance.hpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/memory.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/memory.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/sampler.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/sampler.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/scratch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/scratch.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/scratch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/scratch.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/shared.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/shared.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/sync.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/VK/vkutils/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/VK/vkutils/sync.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/gcm_enums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/gcm_enums.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/gcm_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/gcm_enums.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/gcm_printing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/gcm_printing.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/gcm_printing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/gcm_printing.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/rsx_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/rsx_cache.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/rsx_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/rsx_decode.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/rsx_methods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/rsx_methods.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/rsx_methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/rsx_methods.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/rsx_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/rsx_utils.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/rsx_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/rsx_utils.h -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/rsx_vertex_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/rsx_vertex_data.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/RSX/rsx_vertex_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/RSX/rsx_vertex_data.h -------------------------------------------------------------------------------- /rpcs3/Emu/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/System.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/System.h -------------------------------------------------------------------------------- /rpcs3/Emu/VFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/VFS.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/VFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/VFS.h -------------------------------------------------------------------------------- /rpcs3/Emu/cache_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/cache_utils.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/cache_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/cache_utils.hpp -------------------------------------------------------------------------------- /rpcs3/Emu/localized_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/localized_string.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/localized_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/localized_string.h -------------------------------------------------------------------------------- /rpcs3/Emu/localized_string_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/localized_string_id.h -------------------------------------------------------------------------------- /rpcs3/Emu/perf_meter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/perf_meter.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/perf_meter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/perf_meter.hpp -------------------------------------------------------------------------------- /rpcs3/Emu/system_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/system_config.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/system_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/system_config.h -------------------------------------------------------------------------------- /rpcs3/Emu/system_config_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/system_config_types.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/system_config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/system_config_types.h -------------------------------------------------------------------------------- /rpcs3/Emu/system_progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/system_progress.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/system_progress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/system_progress.hpp -------------------------------------------------------------------------------- /rpcs3/Emu/system_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/system_utils.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/system_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/system_utils.hpp -------------------------------------------------------------------------------- /rpcs3/Emu/title.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/title.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/title.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/title.h -------------------------------------------------------------------------------- /rpcs3/Emu/vfs_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/vfs_config.cpp -------------------------------------------------------------------------------- /rpcs3/Emu/vfs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Emu/vfs_config.h -------------------------------------------------------------------------------- /rpcs3/GLGSRender.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/GLGSRender.vcxproj -------------------------------------------------------------------------------- /rpcs3/GLGSRender.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/GLGSRender.vcxproj.filters -------------------------------------------------------------------------------- /rpcs3/Input/basic_keyboard_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/basic_keyboard_handler.h -------------------------------------------------------------------------------- /rpcs3/Input/basic_mouse_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/basic_mouse_handler.cpp -------------------------------------------------------------------------------- /rpcs3/Input/basic_mouse_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/basic_mouse_handler.h -------------------------------------------------------------------------------- /rpcs3/Input/ds3_pad_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/ds3_pad_handler.cpp -------------------------------------------------------------------------------- /rpcs3/Input/ds3_pad_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/ds3_pad_handler.h -------------------------------------------------------------------------------- /rpcs3/Input/ds4_pad_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/ds4_pad_handler.cpp -------------------------------------------------------------------------------- /rpcs3/Input/ds4_pad_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/ds4_pad_handler.h -------------------------------------------------------------------------------- /rpcs3/Input/dualsense_pad_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/dualsense_pad_handler.cpp -------------------------------------------------------------------------------- /rpcs3/Input/dualsense_pad_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/dualsense_pad_handler.h -------------------------------------------------------------------------------- /rpcs3/Input/evdev_joystick_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/evdev_joystick_handler.h -------------------------------------------------------------------------------- /rpcs3/Input/hid_pad_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/hid_pad_handler.cpp -------------------------------------------------------------------------------- /rpcs3/Input/hid_pad_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/hid_pad_handler.h -------------------------------------------------------------------------------- /rpcs3/Input/keyboard_pad_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/keyboard_pad_handler.cpp -------------------------------------------------------------------------------- /rpcs3/Input/keyboard_pad_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/keyboard_pad_handler.h -------------------------------------------------------------------------------- /rpcs3/Input/mm_joystick_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/mm_joystick_handler.cpp -------------------------------------------------------------------------------- /rpcs3/Input/mm_joystick_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/mm_joystick_handler.h -------------------------------------------------------------------------------- /rpcs3/Input/pad_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/pad_thread.cpp -------------------------------------------------------------------------------- /rpcs3/Input/pad_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/pad_thread.h -------------------------------------------------------------------------------- /rpcs3/Input/product_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/product_info.h -------------------------------------------------------------------------------- /rpcs3/Input/xinput_pad_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/xinput_pad_handler.cpp -------------------------------------------------------------------------------- /rpcs3/Input/xinput_pad_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Input/xinput_pad_handler.h -------------------------------------------------------------------------------- /rpcs3/Loader/ELF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Loader/ELF.cpp -------------------------------------------------------------------------------- /rpcs3/Loader/ELF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Loader/ELF.h -------------------------------------------------------------------------------- /rpcs3/Loader/PSF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Loader/PSF.cpp -------------------------------------------------------------------------------- /rpcs3/Loader/PSF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Loader/PSF.h -------------------------------------------------------------------------------- /rpcs3/Loader/PUP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Loader/PUP.cpp -------------------------------------------------------------------------------- /rpcs3/Loader/PUP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Loader/PUP.h -------------------------------------------------------------------------------- /rpcs3/Loader/TAR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Loader/TAR.cpp -------------------------------------------------------------------------------- /rpcs3/Loader/TAR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Loader/TAR.h -------------------------------------------------------------------------------- /rpcs3/Loader/TROPUSR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Loader/TROPUSR.cpp -------------------------------------------------------------------------------- /rpcs3/Loader/TROPUSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Loader/TROPUSR.h -------------------------------------------------------------------------------- /rpcs3/Loader/TRP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Loader/TRP.cpp -------------------------------------------------------------------------------- /rpcs3/Loader/TRP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Loader/TRP.h -------------------------------------------------------------------------------- /rpcs3/Loader/mself.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Loader/mself.cpp -------------------------------------------------------------------------------- /rpcs3/Loader/mself.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/Loader/mself.hpp -------------------------------------------------------------------------------- /rpcs3/VKGSRender.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/VKGSRender.vcxproj -------------------------------------------------------------------------------- /rpcs3/VKGSRender.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/VKGSRender.vcxproj.filters -------------------------------------------------------------------------------- /rpcs3/XAudio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/XAudio.vcxproj -------------------------------------------------------------------------------- /rpcs3/XAudio.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/XAudio.vcxproj.filters -------------------------------------------------------------------------------- /rpcs3/display_sleep_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/display_sleep_control.cpp -------------------------------------------------------------------------------- /rpcs3/display_sleep_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/display_sleep_control.h -------------------------------------------------------------------------------- /rpcs3/emucore.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/emucore.vcxproj -------------------------------------------------------------------------------- /rpcs3/emucore.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/emucore.vcxproj.filters -------------------------------------------------------------------------------- /rpcs3/frame_icon.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/frame_icon.xpm -------------------------------------------------------------------------------- /rpcs3/git-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/git-version.cmake -------------------------------------------------------------------------------- /rpcs3/headless_application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/headless_application.cpp -------------------------------------------------------------------------------- /rpcs3/headless_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/headless_application.h -------------------------------------------------------------------------------- /rpcs3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/main.cpp -------------------------------------------------------------------------------- /rpcs3/main_application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/main_application.cpp -------------------------------------------------------------------------------- /rpcs3/main_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/main_application.h -------------------------------------------------------------------------------- /rpcs3/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/resource.h -------------------------------------------------------------------------------- /rpcs3/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/resources.qrc -------------------------------------------------------------------------------- /rpcs3/rpcs3.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/rpcs3.desktop -------------------------------------------------------------------------------- /rpcs3/rpcs3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/rpcs3.icns -------------------------------------------------------------------------------- /rpcs3/rpcs3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/rpcs3.ico -------------------------------------------------------------------------------- /rpcs3/rpcs3.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/rpcs3.metainfo.xml -------------------------------------------------------------------------------- /rpcs3/rpcs3.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/rpcs3.plist.in -------------------------------------------------------------------------------- /rpcs3/rpcs3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/rpcs3.png -------------------------------------------------------------------------------- /rpcs3/rpcs3.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/rpcs3.rc -------------------------------------------------------------------------------- /rpcs3/rpcs3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/rpcs3.svg -------------------------------------------------------------------------------- /rpcs3/rpcs3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/rpcs3.vcxproj -------------------------------------------------------------------------------- /rpcs3/rpcs3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/rpcs3.vcxproj.filters -------------------------------------------------------------------------------- /rpcs3/rpcs3_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/rpcs3_version.cpp -------------------------------------------------------------------------------- /rpcs3/rpcs3_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/rpcs3_version.h -------------------------------------------------------------------------------- /rpcs3/stb_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/stb_image.cpp -------------------------------------------------------------------------------- /rpcs3/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/stdafx.cpp -------------------------------------------------------------------------------- /rpcs3/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/stdafx.h -------------------------------------------------------------------------------- /rpcs3/util/asm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/asm.hpp -------------------------------------------------------------------------------- /rpcs3/util/atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/atomic.cpp -------------------------------------------------------------------------------- /rpcs3/util/atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/atomic.hpp -------------------------------------------------------------------------------- /rpcs3/util/auto_typemap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/auto_typemap.hpp -------------------------------------------------------------------------------- /rpcs3/util/cpu_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/cpu_stats.cpp -------------------------------------------------------------------------------- /rpcs3/util/cpu_stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/cpu_stats.hpp -------------------------------------------------------------------------------- /rpcs3/util/dyn_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/dyn_lib.cpp -------------------------------------------------------------------------------- /rpcs3/util/dyn_lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/dyn_lib.hpp -------------------------------------------------------------------------------- /rpcs3/util/endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/endian.hpp -------------------------------------------------------------------------------- /rpcs3/util/fifo_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/fifo_mutex.hpp -------------------------------------------------------------------------------- /rpcs3/util/fixed_typemap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/fixed_typemap.hpp -------------------------------------------------------------------------------- /rpcs3/util/fnv_hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/fnv_hash.hpp -------------------------------------------------------------------------------- /rpcs3/util/init_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/init_mutex.hpp -------------------------------------------------------------------------------- /rpcs3/util/logs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/logs.cpp -------------------------------------------------------------------------------- /rpcs3/util/logs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/logs.hpp -------------------------------------------------------------------------------- /rpcs3/util/media_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/media_utils.cpp -------------------------------------------------------------------------------- /rpcs3/util/media_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/media_utils.h -------------------------------------------------------------------------------- /rpcs3/util/serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/serialization.hpp -------------------------------------------------------------------------------- /rpcs3/util/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/shared_ptr.hpp -------------------------------------------------------------------------------- /rpcs3/util/slow_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/slow_mutex.hpp -------------------------------------------------------------------------------- /rpcs3/util/sysinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/sysinfo.cpp -------------------------------------------------------------------------------- /rpcs3/util/sysinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/sysinfo.hpp -------------------------------------------------------------------------------- /rpcs3/util/to_endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/to_endian.hpp -------------------------------------------------------------------------------- /rpcs3/util/typeindices.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/typeindices.hpp -------------------------------------------------------------------------------- /rpcs3/util/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/types.hpp -------------------------------------------------------------------------------- /rpcs3/util/v128.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/v128.hpp -------------------------------------------------------------------------------- /rpcs3/util/v128sse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/v128sse.hpp -------------------------------------------------------------------------------- /rpcs3/util/vm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/vm.hpp -------------------------------------------------------------------------------- /rpcs3/util/vm_native.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/vm_native.cpp -------------------------------------------------------------------------------- /rpcs3/util/yaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/yaml.cpp -------------------------------------------------------------------------------- /rpcs3/util/yaml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/util/yaml.hpp -------------------------------------------------------------------------------- /rpcs3/windows.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/rpcs3/windows.qrc -------------------------------------------------------------------------------- /usertype.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHrpcs3/rpcs3/HEAD/usertype.dat --------------------------------------------------------------------------------