├── .github ├── ISSUE_TEMPLATE │ └── report.yml ├── build-libretro-zip.sh ├── extract-foreign-all.sh ├── extract-foreign.sh └── workflows │ ├── ci-libretro.yml │ ├── ci-linux-arm64.yml │ ├── ci-linux-armhf.yml │ ├── ci-linux.yml │ └── dev-release.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── AUTHORS ├── COPYING ├── ChangeLog ├── ChangeLog.df ├── Makefile ├── Makefile.libretro ├── NEWS ├── README.md ├── configure ├── deps ├── arm-mem │ ├── .gitrepo │ ├── Makefile │ ├── README.md │ ├── arm-mem.h │ ├── memcmp-v6l.S │ ├── memcmp-v7l.S │ ├── memcpymove-v6l.S │ ├── memcpymove-v7l.S │ ├── memset-v6l.S │ ├── memset-v7l.S │ ├── strlen-v7l.S │ ├── test-strlen.c │ └── test.c ├── libchdr │ ├── .github │ │ └── workflows │ │ │ ├── bsd.yml │ │ │ ├── cmake.yml │ │ │ ├── switch.yml │ │ │ └── vita.yml │ ├── .gitignore │ ├── .gitrepo │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── deps │ │ ├── lzma-24.05 │ │ │ ├── Asm │ │ │ │ ├── arm64 │ │ │ │ │ ├── 7zAsm.S │ │ │ │ │ └── LzmaDecOpt.S │ │ │ │ └── x86 │ │ │ │ │ ├── 7zAsm.asm │ │ │ │ │ └── LzmaDecOpt.asm │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── include │ │ │ │ ├── 7zTypes.h │ │ │ │ ├── 7zWindows.h │ │ │ │ ├── Alloc.h │ │ │ │ ├── Bra.h │ │ │ │ ├── Compiler.h │ │ │ │ ├── CpuArch.h │ │ │ │ ├── Delta.h │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── Lzma86.h │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaEnc.h │ │ │ │ ├── Precomp.h │ │ │ │ ├── RotateDefs.h │ │ │ │ └── Sort.h │ │ │ └── src │ │ │ │ ├── Alloc.c │ │ │ │ ├── Bra.c │ │ │ │ ├── Bra86.c │ │ │ │ ├── BraIA64.c │ │ │ │ ├── CpuArch.c │ │ │ │ ├── Delta.c │ │ │ │ ├── LzFind.c │ │ │ │ ├── Lzma86Dec.c │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaEnc.c │ │ │ │ └── Sort.c │ │ ├── zlib-1.3.1 │ │ │ ├── CMakeLists.txt │ │ │ ├── ChangeLog │ │ │ ├── FAQ │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── adler32.c │ │ │ ├── amiga │ │ │ │ ├── Makefile.pup │ │ │ │ └── Makefile.sas │ │ │ ├── compress.c │ │ │ ├── configure │ │ │ ├── contrib │ │ │ │ ├── README.contrib │ │ │ │ ├── ada │ │ │ │ │ ├── buffer_demo.adb │ │ │ │ │ ├── mtest.adb │ │ │ │ │ ├── read.adb │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── test.adb │ │ │ │ │ ├── zlib-streams.adb │ │ │ │ │ ├── zlib-streams.ads │ │ │ │ │ ├── zlib-thin.adb │ │ │ │ │ ├── zlib-thin.ads │ │ │ │ │ ├── zlib.adb │ │ │ │ │ ├── zlib.ads │ │ │ │ │ └── zlib.gpr │ │ │ │ ├── blast │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── blast.c │ │ │ │ │ ├── blast.h │ │ │ │ │ ├── test.pk │ │ │ │ │ └── test.txt │ │ │ │ ├── delphi │ │ │ │ │ ├── ZLib.pas │ │ │ │ │ ├── ZLibConst.pas │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── zlibd32.mak │ │ │ │ ├── dotzlib │ │ │ │ │ ├── DotZLib.build │ │ │ │ │ ├── DotZLib.chm │ │ │ │ │ ├── DotZLib.sln │ │ │ │ │ ├── DotZLib │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ │ │ ├── CircularBuffer.cs │ │ │ │ │ │ ├── CodecBase.cs │ │ │ │ │ │ ├── Deflater.cs │ │ │ │ │ │ ├── DotZLib.cs │ │ │ │ │ │ ├── DotZLib.csproj │ │ │ │ │ │ ├── GZipStream.cs │ │ │ │ │ │ ├── Inflater.cs │ │ │ │ │ │ └── UnitTests.cs │ │ │ │ │ ├── LICENSE_1_0.txt │ │ │ │ │ └── readme.txt │ │ │ │ ├── gcc_gvmat64 │ │ │ │ │ └── gvmat64.S │ │ │ │ ├── infback9 │ │ │ │ │ ├── README │ │ │ │ │ ├── infback9.c │ │ │ │ │ ├── infback9.h │ │ │ │ │ ├── inffix9.h │ │ │ │ │ ├── inflate9.h │ │ │ │ │ ├── inftree9.c │ │ │ │ │ └── inftree9.h │ │ │ │ ├── iostream │ │ │ │ │ ├── test.cpp │ │ │ │ │ ├── zfstream.cpp │ │ │ │ │ └── zfstream.h │ │ │ │ ├── iostream2 │ │ │ │ │ ├── zstream.h │ │ │ │ │ └── zstream_test.cpp │ │ │ │ ├── iostream3 │ │ │ │ │ ├── README │ │ │ │ │ ├── TODO │ │ │ │ │ ├── test.cc │ │ │ │ │ ├── zfstream.cc │ │ │ │ │ └── zfstream.h │ │ │ │ ├── minizip │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── MiniZip64_Changes.txt │ │ │ │ │ ├── MiniZip64_info.txt │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── crypt.h │ │ │ │ │ ├── ioapi.c │ │ │ │ │ ├── ioapi.h │ │ │ │ │ ├── iowin32.c │ │ │ │ │ ├── iowin32.h │ │ │ │ │ ├── make_vms.com │ │ │ │ │ ├── miniunz.c │ │ │ │ │ ├── miniunzip.1 │ │ │ │ │ ├── minizip.1 │ │ │ │ │ ├── minizip.c │ │ │ │ │ ├── minizip.pc.in │ │ │ │ │ ├── mztools.c │ │ │ │ │ ├── mztools.h │ │ │ │ │ ├── unzip.c │ │ │ │ │ ├── unzip.h │ │ │ │ │ ├── zip.c │ │ │ │ │ └── zip.h │ │ │ │ ├── nuget │ │ │ │ │ ├── nuget.csproj │ │ │ │ │ └── nuget.sln │ │ │ │ ├── pascal │ │ │ │ │ ├── example.pas │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── zlibd32.mak │ │ │ │ │ └── zlibpas.pas │ │ │ │ ├── puff │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── puff.c │ │ │ │ │ ├── puff.h │ │ │ │ │ ├── pufftest.c │ │ │ │ │ └── zeros.raw │ │ │ │ ├── testzlib │ │ │ │ │ ├── testzlib.c │ │ │ │ │ └── testzlib.txt │ │ │ │ ├── untgz │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.msc │ │ │ │ │ └── untgz.c │ │ │ │ └── vstudio │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── vc10 │ │ │ │ │ ├── miniunz.vcxproj │ │ │ │ │ ├── miniunz.vcxproj.filters │ │ │ │ │ ├── minizip.vcxproj │ │ │ │ │ ├── minizip.vcxproj.filters │ │ │ │ │ ├── testzlib.vcxproj │ │ │ │ │ ├── testzlib.vcxproj.filters │ │ │ │ │ ├── testzlibdll.vcxproj │ │ │ │ │ ├── testzlibdll.vcxproj.filters │ │ │ │ │ ├── zlib.rc │ │ │ │ │ ├── zlibstat.vcxproj │ │ │ │ │ ├── zlibstat.vcxproj.filters │ │ │ │ │ ├── zlibvc.def │ │ │ │ │ ├── zlibvc.sln │ │ │ │ │ ├── zlibvc.vcxproj │ │ │ │ │ └── zlibvc.vcxproj.filters │ │ │ │ │ ├── vc11 │ │ │ │ │ ├── miniunz.vcxproj │ │ │ │ │ ├── minizip.vcxproj │ │ │ │ │ ├── testzlib.vcxproj │ │ │ │ │ ├── testzlibdll.vcxproj │ │ │ │ │ ├── zlib.rc │ │ │ │ │ ├── zlibstat.vcxproj │ │ │ │ │ ├── zlibvc.def │ │ │ │ │ ├── zlibvc.sln │ │ │ │ │ └── zlibvc.vcxproj │ │ │ │ │ ├── vc12 │ │ │ │ │ ├── miniunz.vcxproj │ │ │ │ │ ├── minizip.vcxproj │ │ │ │ │ ├── testzlib.vcxproj │ │ │ │ │ ├── testzlibdll.vcxproj │ │ │ │ │ ├── zlib.rc │ │ │ │ │ ├── zlibstat.vcxproj │ │ │ │ │ ├── zlibvc.def │ │ │ │ │ ├── zlibvc.sln │ │ │ │ │ └── zlibvc.vcxproj │ │ │ │ │ ├── vc14 │ │ │ │ │ ├── miniunz.vcxproj │ │ │ │ │ ├── minizip.vcxproj │ │ │ │ │ ├── testzlib.vcxproj │ │ │ │ │ ├── testzlibdll.vcxproj │ │ │ │ │ ├── zlib.rc │ │ │ │ │ ├── zlibstat.vcxproj │ │ │ │ │ ├── zlibvc.def │ │ │ │ │ ├── zlibvc.sln │ │ │ │ │ └── zlibvc.vcxproj │ │ │ │ │ ├── vc17 │ │ │ │ │ ├── miniunz.vcxproj │ │ │ │ │ ├── minizip.vcxproj │ │ │ │ │ ├── testzlib.vcxproj │ │ │ │ │ ├── testzlibdll.vcxproj │ │ │ │ │ ├── zlib.rc │ │ │ │ │ ├── zlibstat.vcxproj │ │ │ │ │ ├── zlibvc.def │ │ │ │ │ ├── zlibvc.sln │ │ │ │ │ └── zlibvc.vcxproj │ │ │ │ │ └── vc9 │ │ │ │ │ ├── miniunz.vcproj │ │ │ │ │ ├── minizip.vcproj │ │ │ │ │ ├── testzlib.vcproj │ │ │ │ │ ├── testzlibdll.vcproj │ │ │ │ │ ├── zlib.rc │ │ │ │ │ ├── zlibstat.vcproj │ │ │ │ │ ├── zlibvc.def │ │ │ │ │ ├── zlibvc.sln │ │ │ │ │ └── zlibvc.vcproj │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── doc │ │ │ │ ├── algorithm.txt │ │ │ │ ├── crc-doc.1.0.pdf │ │ │ │ ├── rfc1950.txt │ │ │ │ ├── rfc1951.txt │ │ │ │ ├── rfc1952.txt │ │ │ │ └── txtvsbin.txt │ │ │ ├── examples │ │ │ │ ├── README.examples │ │ │ │ ├── enough.c │ │ │ │ ├── fitblk.c │ │ │ │ ├── gun.c │ │ │ │ ├── gzappend.c │ │ │ │ ├── gzjoin.c │ │ │ │ ├── gzlog.c │ │ │ │ ├── gzlog.h │ │ │ │ ├── gznorm.c │ │ │ │ ├── zlib_how.html │ │ │ │ ├── zpipe.c │ │ │ │ ├── zran.c │ │ │ │ └── zran.h │ │ │ ├── gzclose.c │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── make_vms.com │ │ │ ├── msdos │ │ │ │ ├── Makefile.bor │ │ │ │ ├── Makefile.dj2 │ │ │ │ ├── Makefile.emx │ │ │ │ ├── Makefile.msc │ │ │ │ └── Makefile.tc │ │ │ ├── nintendods │ │ │ │ ├── Makefile │ │ │ │ └── README │ │ │ ├── old │ │ │ │ ├── Makefile.emx │ │ │ │ ├── Makefile.riscos │ │ │ │ ├── README │ │ │ │ ├── descrip.mms │ │ │ │ ├── os2 │ │ │ │ │ ├── Makefile.os2 │ │ │ │ │ └── zlib.def │ │ │ │ └── visual-basic.txt │ │ │ ├── os400 │ │ │ │ ├── README400 │ │ │ │ ├── bndsrc │ │ │ │ ├── make.sh │ │ │ │ └── zlib.inc │ │ │ ├── qnx │ │ │ │ └── package.qpg │ │ │ ├── test │ │ │ │ ├── example.c │ │ │ │ ├── infcover.c │ │ │ │ └── minigzip.c │ │ │ ├── treebuild.xml │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── watcom │ │ │ │ ├── watcom_f.mak │ │ │ │ └── watcom_l.mak │ │ │ ├── win32 │ │ │ │ ├── DLL_FAQ.txt │ │ │ │ ├── Makefile.bor │ │ │ │ ├── Makefile.gcc │ │ │ │ ├── Makefile.msc │ │ │ │ ├── README-WIN32.txt │ │ │ │ ├── VisualC.txt │ │ │ │ ├── zlib.def │ │ │ │ └── zlib1.rc │ │ │ ├── zconf.h │ │ │ ├── zconf.h.cmakein │ │ │ ├── zconf.h.in │ │ │ ├── zlib.3 │ │ │ ├── zlib.3.pdf │ │ │ ├── zlib.h │ │ │ ├── zlib.map │ │ │ ├── zlib.pc.cmakein │ │ │ ├── zlib.pc.in │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ └── zstd-1.5.6 │ │ │ ├── .buckconfig │ │ │ ├── .buckversion │ │ │ ├── .circleci │ │ │ ├── config.yml │ │ │ └── images │ │ │ │ └── primary │ │ │ │ └── Dockerfile │ │ │ ├── .cirrus.yml │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug_report.md │ │ │ │ └── feature_request.md │ │ │ ├── dependabot.yml │ │ │ └── workflows │ │ │ │ ├── commit.yml │ │ │ │ ├── dev-long-tests.yml │ │ │ │ ├── dev-short-tests.yml │ │ │ │ ├── nightly.yml │ │ │ │ ├── publish-release-artifacts.yml │ │ │ │ ├── scorecards.yml │ │ │ │ └── windows-artifacts.yml │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── COPYING │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── TESTING.md │ │ │ ├── build │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── VS2008 │ │ │ │ ├── fullbench │ │ │ │ │ └── fullbench.vcproj │ │ │ │ ├── fuzzer │ │ │ │ │ └── fuzzer.vcproj │ │ │ │ ├── zstd.sln │ │ │ │ ├── zstd │ │ │ │ │ └── zstd.vcproj │ │ │ │ └── zstdlib │ │ │ │ │ └── zstdlib.vcproj │ │ │ ├── VS2010 │ │ │ │ ├── CompileAsCpp.props │ │ │ │ ├── datagen │ │ │ │ │ └── datagen.vcxproj │ │ │ │ ├── fullbench-dll │ │ │ │ │ └── fullbench-dll.vcxproj │ │ │ │ ├── fullbench │ │ │ │ │ └── fullbench.vcxproj │ │ │ │ ├── fuzzer │ │ │ │ │ └── fuzzer.vcxproj │ │ │ │ ├── libzstd-dll │ │ │ │ │ ├── libzstd-dll.rc │ │ │ │ │ └── libzstd-dll.vcxproj │ │ │ │ ├── libzstd │ │ │ │ │ └── libzstd.vcxproj │ │ │ │ ├── zstd.sln │ │ │ │ └── zstd │ │ │ │ │ ├── zstd.rc │ │ │ │ │ └── zstd.vcxproj │ │ │ ├── VS_scripts │ │ │ │ ├── README.md │ │ │ │ ├── build.VS2010.cmd │ │ │ │ ├── build.VS2012.cmd │ │ │ │ ├── build.VS2013.cmd │ │ │ │ ├── build.VS2015.cmd │ │ │ │ ├── build.VS2017.cmd │ │ │ │ ├── build.VS2017Community.cmd │ │ │ │ ├── build.VS2017Enterprise.cmd │ │ │ │ ├── build.VS2017Professional.cmd │ │ │ │ └── build.generic.cmd │ │ │ ├── cmake │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CMakeModules │ │ │ │ │ ├── AddZstdCompilationFlags.cmake │ │ │ │ │ ├── FindLibLZ4.cmake │ │ │ │ │ ├── GetZstdLibraryVersion.cmake │ │ │ │ │ └── JoinPaths.cmake │ │ │ │ ├── README.md │ │ │ │ ├── contrib │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── gen_html │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ └── pzstd │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── lib │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── cmake_uninstall.cmake.in │ │ │ │ ├── programs │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── tests │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── CMakeLists.txt │ │ │ │ └── zstdConfig.cmake.in │ │ │ ├── meson │ │ │ │ ├── GetZstdLibraryVersion.py │ │ │ │ ├── InstallSymlink.py │ │ │ │ ├── README.md │ │ │ │ ├── contrib │ │ │ │ │ ├── gen_html │ │ │ │ │ │ └── meson.build │ │ │ │ │ ├── meson.build │ │ │ │ │ └── pzstd │ │ │ │ │ │ └── meson.build │ │ │ │ ├── lib │ │ │ │ │ └── meson.build │ │ │ │ ├── meson.build │ │ │ │ ├── meson_options.txt │ │ │ │ ├── programs │ │ │ │ │ └── meson.build │ │ │ │ └── tests │ │ │ │ │ ├── meson.build │ │ │ │ │ └── valgrindTest.py │ │ │ └── single_file_libs │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── build_decoder_test.sh │ │ │ │ ├── build_library_test.sh │ │ │ │ ├── combine.py │ │ │ │ ├── combine.sh │ │ │ │ ├── create_single_file_decoder.sh │ │ │ │ ├── create_single_file_library.sh │ │ │ │ ├── examples │ │ │ │ ├── README.md │ │ │ │ ├── emscripten.c │ │ │ │ ├── roundtrip.c │ │ │ │ ├── shell.html │ │ │ │ ├── simple.c │ │ │ │ ├── testcard-dxt1.inl │ │ │ │ ├── testcard-zstd.inl │ │ │ │ └── testcard.png │ │ │ │ ├── zstd-in.c │ │ │ │ └── zstddeclib-in.c │ │ │ ├── contrib │ │ │ ├── VS2005 │ │ │ │ ├── README.md │ │ │ │ ├── fullbench │ │ │ │ │ └── fullbench.vcproj │ │ │ │ ├── fuzzer │ │ │ │ │ └── fuzzer.vcproj │ │ │ │ ├── zstd.sln │ │ │ │ ├── zstd │ │ │ │ │ └── zstd.vcproj │ │ │ │ └── zstdlib │ │ │ │ │ └── zstdlib.vcproj │ │ │ ├── cleanTabs │ │ │ ├── diagnose_corruption │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ └── check_flipped_bits.c │ │ │ ├── docker │ │ │ │ ├── Dockerfile │ │ │ │ └── README.md │ │ │ ├── externalSequenceProducer │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── main.c │ │ │ │ ├── sequence_producer.c │ │ │ │ └── sequence_producer.h │ │ │ ├── freestanding_lib │ │ │ │ └── freestanding.py │ │ │ ├── gen_html │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── gen-zstd-manual.sh │ │ │ │ └── gen_html.cpp │ │ │ ├── largeNbDicts │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ └── largeNbDicts.c │ │ │ ├── linux-kernel │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── btrfs-benchmark.sh │ │ │ │ ├── btrfs-extract-benchmark.sh │ │ │ │ ├── decompress_sources.h │ │ │ │ ├── linux.mk │ │ │ │ ├── linux_zstd.h │ │ │ │ ├── mem.h │ │ │ │ ├── squashfs-benchmark.sh │ │ │ │ ├── test │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── include │ │ │ │ │ │ ├── asm │ │ │ │ │ │ │ └── unaligned.h │ │ │ │ │ │ └── linux │ │ │ │ │ │ │ ├── compiler.h │ │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ │ ├── kernel.h │ │ │ │ │ │ │ ├── limits.h │ │ │ │ │ │ │ ├── math64.h │ │ │ │ │ │ │ ├── module.h │ │ │ │ │ │ │ ├── printk.h │ │ │ │ │ │ │ ├── stddef.h │ │ │ │ │ │ │ ├── swab.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ └── xxhash.h │ │ │ │ │ ├── macro-test.sh │ │ │ │ │ ├── static_test.c │ │ │ │ │ └── test.c │ │ │ │ ├── zstd_common_module.c │ │ │ │ ├── zstd_compress_module.c │ │ │ │ ├── zstd_decompress_module.c │ │ │ │ └── zstd_deps.h │ │ │ ├── match_finders │ │ │ │ ├── README.md │ │ │ │ ├── zstd_edist.c │ │ │ │ └── zstd_edist.h │ │ │ ├── premake │ │ │ │ ├── premake4.lua │ │ │ │ └── zstd.lua │ │ │ ├── pzstd │ │ │ │ ├── .gitignore │ │ │ │ ├── BUCK │ │ │ │ ├── ErrorHolder.h │ │ │ │ ├── Logging.h │ │ │ │ ├── Makefile │ │ │ │ ├── Options.cpp │ │ │ │ ├── Options.h │ │ │ │ ├── Pzstd.cpp │ │ │ │ ├── Pzstd.h │ │ │ │ ├── README.md │ │ │ │ ├── SkippableFrame.cpp │ │ │ │ ├── SkippableFrame.h │ │ │ │ ├── images │ │ │ │ │ ├── Cspeed.png │ │ │ │ │ └── Dspeed.png │ │ │ │ ├── main.cpp │ │ │ │ ├── test │ │ │ │ │ ├── BUCK │ │ │ │ │ ├── OptionsTest.cpp │ │ │ │ │ ├── PzstdTest.cpp │ │ │ │ │ ├── RoundTrip.h │ │ │ │ │ └── RoundTripTest.cpp │ │ │ │ └── utils │ │ │ │ │ ├── BUCK │ │ │ │ │ ├── Buffer.h │ │ │ │ │ ├── FileSystem.h │ │ │ │ │ ├── Likely.h │ │ │ │ │ ├── Portability.h │ │ │ │ │ ├── Range.h │ │ │ │ │ ├── ResourcePool.h │ │ │ │ │ ├── ScopeGuard.h │ │ │ │ │ ├── ThreadPool.h │ │ │ │ │ ├── WorkQueue.h │ │ │ │ │ └── test │ │ │ │ │ ├── BUCK │ │ │ │ │ ├── BufferTest.cpp │ │ │ │ │ ├── RangeTest.cpp │ │ │ │ │ ├── ResourcePoolTest.cpp │ │ │ │ │ ├── ScopeGuardTest.cpp │ │ │ │ │ ├── ThreadPoolTest.cpp │ │ │ │ │ └── WorkQueueTest.cpp │ │ │ ├── recovery │ │ │ │ ├── Makefile │ │ │ │ └── recover_directory.c │ │ │ ├── seekable_format │ │ │ │ ├── README.md │ │ │ │ ├── examples │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── parallel_compression.c │ │ │ │ │ ├── parallel_processing.c │ │ │ │ │ ├── seekable_compression.c │ │ │ │ │ ├── seekable_decompression.c │ │ │ │ │ └── seekable_decompression_mem.c │ │ │ │ ├── tests │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ └── seekable_tests.c │ │ │ │ ├── zstd_seekable.h │ │ │ │ ├── zstd_seekable_compression_format.md │ │ │ │ ├── zstdseek_compress.c │ │ │ │ └── zstdseek_decompress.c │ │ │ ├── seqBench │ │ │ │ ├── Makefile │ │ │ │ └── seqBench.c │ │ │ └── snap │ │ │ │ └── snapcraft.yaml │ │ │ ├── doc │ │ │ ├── README.md │ │ │ ├── decompressor_errata.md │ │ │ ├── decompressor_permissive.md │ │ │ ├── educational_decoder │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── harness.c │ │ │ │ ├── zstd_decompress.c │ │ │ │ └── zstd_decompress.h │ │ │ ├── images │ │ │ │ ├── CSpeed2.png │ │ │ │ ├── DCspeed5.png │ │ │ │ ├── DSpeed3.png │ │ │ │ ├── cdict_v136.png │ │ │ │ ├── dict-cr.png │ │ │ │ ├── dict-cs.png │ │ │ │ ├── dict-ds.png │ │ │ │ ├── zstd_cdict_v1_3_5.png │ │ │ │ └── zstd_logo86.png │ │ │ ├── zstd_compression_format.md │ │ │ └── zstd_manual.html │ │ │ ├── examples │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── common.h │ │ │ ├── dictionary_compression.c │ │ │ ├── dictionary_decompression.c │ │ │ ├── multiple_simple_compression.c │ │ │ ├── multiple_streaming_compression.c │ │ │ ├── simple_compression.c │ │ │ ├── simple_decompression.c │ │ │ ├── streaming_compression.c │ │ │ ├── streaming_compression_thread_pool.c │ │ │ ├── streaming_decompression.c │ │ │ └── streaming_memory_usage.c │ │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── BUCK │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── common │ │ │ │ ├── allocations.h │ │ │ │ ├── bits.h │ │ │ │ ├── bitstream.h │ │ │ │ ├── compiler.h │ │ │ │ ├── cpu.h │ │ │ │ ├── debug.c │ │ │ │ ├── debug.h │ │ │ │ ├── entropy_common.c │ │ │ │ ├── error_private.c │ │ │ │ ├── error_private.h │ │ │ │ ├── fse.h │ │ │ │ ├── fse_decompress.c │ │ │ │ ├── huf.h │ │ │ │ ├── mem.h │ │ │ │ ├── pool.c │ │ │ │ ├── pool.h │ │ │ │ ├── portability_macros.h │ │ │ │ ├── threading.c │ │ │ │ ├── threading.h │ │ │ │ ├── xxhash.c │ │ │ │ ├── xxhash.h │ │ │ │ ├── zstd_common.c │ │ │ │ ├── zstd_deps.h │ │ │ │ ├── zstd_internal.h │ │ │ │ └── zstd_trace.h │ │ │ ├── compress │ │ │ │ ├── clevels.h │ │ │ │ ├── fse_compress.c │ │ │ │ ├── hist.c │ │ │ │ ├── hist.h │ │ │ │ ├── huf_compress.c │ │ │ │ ├── zstd_compress.c │ │ │ │ ├── zstd_compress_internal.h │ │ │ │ ├── zstd_compress_literals.c │ │ │ │ ├── zstd_compress_literals.h │ │ │ │ ├── zstd_compress_sequences.c │ │ │ │ ├── zstd_compress_sequences.h │ │ │ │ ├── zstd_compress_superblock.c │ │ │ │ ├── zstd_compress_superblock.h │ │ │ │ ├── zstd_cwksp.h │ │ │ │ ├── zstd_double_fast.c │ │ │ │ ├── zstd_double_fast.h │ │ │ │ ├── zstd_fast.c │ │ │ │ ├── zstd_fast.h │ │ │ │ ├── zstd_lazy.c │ │ │ │ ├── zstd_lazy.h │ │ │ │ ├── zstd_ldm.c │ │ │ │ ├── zstd_ldm.h │ │ │ │ ├── zstd_ldm_geartab.h │ │ │ │ ├── zstd_opt.c │ │ │ │ ├── zstd_opt.h │ │ │ │ ├── zstdmt_compress.c │ │ │ │ └── zstdmt_compress.h │ │ │ ├── decompress │ │ │ │ ├── huf_decompress.c │ │ │ │ ├── huf_decompress_amd64.S │ │ │ │ ├── zstd_ddict.c │ │ │ │ ├── zstd_ddict.h │ │ │ │ ├── zstd_decompress.c │ │ │ │ ├── zstd_decompress_block.c │ │ │ │ ├── zstd_decompress_block.h │ │ │ │ └── zstd_decompress_internal.h │ │ │ ├── deprecated │ │ │ │ ├── zbuff.h │ │ │ │ ├── zbuff_common.c │ │ │ │ ├── zbuff_compress.c │ │ │ │ └── zbuff_decompress.c │ │ │ ├── dictBuilder │ │ │ │ ├── cover.c │ │ │ │ ├── cover.h │ │ │ │ ├── divsufsort.c │ │ │ │ ├── divsufsort.h │ │ │ │ ├── fastcover.c │ │ │ │ └── zdict.c │ │ │ ├── dll │ │ │ │ └── example │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── build_package.bat │ │ │ │ │ ├── fullbench-dll.sln │ │ │ │ │ └── fullbench-dll.vcxproj │ │ │ ├── legacy │ │ │ │ ├── zstd_legacy.h │ │ │ │ ├── zstd_v01.c │ │ │ │ ├── zstd_v01.h │ │ │ │ ├── zstd_v02.c │ │ │ │ ├── zstd_v02.h │ │ │ │ ├── zstd_v03.c │ │ │ │ ├── zstd_v03.h │ │ │ │ ├── zstd_v04.c │ │ │ │ ├── zstd_v04.h │ │ │ │ ├── zstd_v05.c │ │ │ │ ├── zstd_v05.h │ │ │ │ ├── zstd_v06.c │ │ │ │ ├── zstd_v06.h │ │ │ │ ├── zstd_v07.c │ │ │ │ └── zstd_v07.h │ │ │ ├── libzstd.mk │ │ │ ├── libzstd.pc.in │ │ │ ├── module.modulemap │ │ │ ├── zdict.h │ │ │ ├── zstd.h │ │ │ └── zstd_errors.h │ │ │ ├── programs │ │ │ ├── .gitignore │ │ │ ├── BUCK │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── benchfn.c │ │ │ ├── benchfn.h │ │ │ ├── benchzstd.c │ │ │ ├── benchzstd.h │ │ │ ├── datagen.c │ │ │ ├── datagen.h │ │ │ ├── dibio.c │ │ │ ├── dibio.h │ │ │ ├── fileio.c │ │ │ ├── fileio.h │ │ │ ├── fileio_asyncio.c │ │ │ ├── fileio_asyncio.h │ │ │ ├── fileio_common.h │ │ │ ├── fileio_types.h │ │ │ ├── lorem.c │ │ │ ├── lorem.h │ │ │ ├── platform.h │ │ │ ├── timefn.c │ │ │ ├── timefn.h │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── windres │ │ │ │ ├── verrsrc.h │ │ │ │ ├── zstd.rc │ │ │ │ ├── zstd32.res │ │ │ │ └── zstd64.res │ │ │ ├── zstd.1 │ │ │ ├── zstd.1.md │ │ │ ├── zstdcli.c │ │ │ ├── zstdcli_trace.c │ │ │ ├── zstdcli_trace.h │ │ │ ├── zstdgrep │ │ │ ├── zstdgrep.1 │ │ │ ├── zstdgrep.1.md │ │ │ ├── zstdless │ │ │ ├── zstdless.1 │ │ │ └── zstdless.1.md │ │ │ ├── tests │ │ │ ├── .gitignore │ │ │ ├── DEPRECATED-test-zstd-speed.py │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── automated_benchmarking.py │ │ │ ├── bigdict.c │ │ │ ├── checkTag.c │ │ │ ├── check_size.py │ │ │ ├── cli-tests │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── basic │ │ │ │ │ ├── args.sh │ │ │ │ │ ├── args.sh.exit │ │ │ │ │ ├── args.sh.stderr.glob │ │ │ │ │ ├── help.sh │ │ │ │ │ ├── help.sh.stdout.glob │ │ │ │ │ ├── memlimit.sh │ │ │ │ │ ├── memlimit.sh.stderr.exact │ │ │ │ │ ├── memlimit.sh.stdout.exact │ │ │ │ │ ├── output_dir.sh │ │ │ │ │ ├── output_dir.sh.stderr.exact │ │ │ │ │ ├── output_dir.sh.stdout.exact │ │ │ │ │ ├── version.sh │ │ │ │ │ └── version.sh.stdout.glob │ │ │ │ ├── bin │ │ │ │ │ ├── cmp_size │ │ │ │ │ ├── datagen │ │ │ │ │ ├── die │ │ │ │ │ ├── println │ │ │ │ │ ├── unzstd │ │ │ │ │ ├── zstd │ │ │ │ │ ├── zstdcat │ │ │ │ │ ├── zstdgrep │ │ │ │ │ └── zstdless │ │ │ │ ├── cltools │ │ │ │ │ ├── setup │ │ │ │ │ ├── zstdgrep.sh │ │ │ │ │ ├── zstdgrep.sh.exit │ │ │ │ │ ├── zstdgrep.sh.stderr.exact │ │ │ │ │ ├── zstdgrep.sh.stdout.glob │ │ │ │ │ ├── zstdless.sh │ │ │ │ │ ├── zstdless.sh.stderr.exact │ │ │ │ │ └── zstdless.sh.stdout.glob │ │ │ │ ├── common │ │ │ │ │ ├── format.sh │ │ │ │ │ ├── mtime.sh │ │ │ │ │ ├── permissions.sh │ │ │ │ │ └── platform.sh │ │ │ │ ├── compression │ │ │ │ │ ├── adapt.sh │ │ │ │ │ ├── basic.sh │ │ │ │ │ ├── compress-literals.sh │ │ │ │ │ ├── format.sh │ │ │ │ │ ├── golden.sh │ │ │ │ │ ├── gzip-compat.sh │ │ │ │ │ ├── levels.sh │ │ │ │ │ ├── levels.sh.stderr.exact │ │ │ │ │ ├── long-distance-matcher.sh │ │ │ │ │ ├── multi-threaded.sh │ │ │ │ │ ├── multi-threaded.sh.stderr.exact │ │ │ │ │ ├── multiple-files.sh │ │ │ │ │ ├── multiple-files.sh.stdout.exact │ │ │ │ │ ├── row-match-finder.sh │ │ │ │ │ ├── setup │ │ │ │ │ ├── stream-size.sh │ │ │ │ │ ├── verbose-wlog.sh │ │ │ │ │ ├── verbose-wlog.sh.stderr.glob │ │ │ │ │ ├── verbose-wlog.sh.stdout.glob │ │ │ │ │ ├── window-resize.sh │ │ │ │ │ ├── window-resize.sh.stderr.ignore │ │ │ │ │ └── window-resize.sh.stdout.glob │ │ │ │ ├── decompression │ │ │ │ │ ├── detectErrors.sh │ │ │ │ │ ├── golden.sh │ │ │ │ │ ├── pass-through.sh │ │ │ │ │ ├── pass-through.sh.stderr.exact │ │ │ │ │ └── pass-through.sh.stdout.exact │ │ │ │ ├── dict-builder │ │ │ │ │ ├── empty-input.sh │ │ │ │ │ ├── empty-input.sh.stderr.exact │ │ │ │ │ ├── no-inputs.sh │ │ │ │ │ ├── no-inputs.sh.exit │ │ │ │ │ └── no-inputs.sh.stderr.exact │ │ │ │ ├── dictionaries │ │ │ │ │ ├── dictionary-mismatch.sh │ │ │ │ │ ├── dictionary-mismatch.sh.stderr.exact │ │ │ │ │ ├── golden.sh │ │ │ │ │ ├── setup │ │ │ │ │ └── setup_once │ │ │ │ ├── file-handling │ │ │ │ │ ├── directory-mirror.sh │ │ │ │ │ ├── directory-mirror.sh.stderr.exact │ │ │ │ │ └── directory-mirror.sh.stdout.exact │ │ │ │ ├── file-stat │ │ │ │ │ ├── compress-file-to-dir-without-write-perm.sh │ │ │ │ │ ├── compress-file-to-dir-without-write-perm.sh.stderr.exact │ │ │ │ │ ├── compress-file-to-file.sh │ │ │ │ │ ├── compress-file-to-file.sh.stderr.exact │ │ │ │ │ ├── compress-file-to-stdout.sh │ │ │ │ │ ├── compress-file-to-stdout.sh.stderr.exact │ │ │ │ │ ├── compress-stdin-to-file.sh │ │ │ │ │ ├── compress-stdin-to-file.sh.stderr.exact │ │ │ │ │ ├── compress-stdin-to-stdout.sh │ │ │ │ │ ├── compress-stdin-to-stdout.sh.stderr.exact │ │ │ │ │ ├── decompress-file-to-file.sh │ │ │ │ │ ├── decompress-file-to-file.sh.stderr.exact │ │ │ │ │ ├── decompress-file-to-stdout.sh │ │ │ │ │ ├── decompress-file-to-stdout.sh.stderr.exact │ │ │ │ │ ├── decompress-stdin-to-file.sh │ │ │ │ │ ├── decompress-stdin-to-file.sh.stderr.exact │ │ │ │ │ ├── decompress-stdin-to-stdout.sh │ │ │ │ │ └── decompress-stdin-to-stdout.sh.stderr.exact │ │ │ │ ├── progress │ │ │ │ │ ├── no-progress.sh │ │ │ │ │ ├── no-progress.sh.stderr.glob │ │ │ │ │ ├── progress.sh │ │ │ │ │ └── progress.sh.stderr.glob │ │ │ │ ├── run.py │ │ │ │ └── zstd-symlinks │ │ │ │ │ ├── setup │ │ │ │ │ ├── zstdcat.sh │ │ │ │ │ └── zstdcat.sh.stdout.exact │ │ │ ├── datagencli.c │ │ │ ├── decodecorpus.c │ │ │ ├── dict-files │ │ │ │ └── zero-weight-dict │ │ │ ├── external_matchfinder.c │ │ │ ├── external_matchfinder.h │ │ │ ├── fullbench.c │ │ │ ├── fuzz │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── block_decompress.c │ │ │ │ ├── block_round_trip.c │ │ │ │ ├── decompress_cross_format.c │ │ │ │ ├── decompress_dstSize_tooSmall.c │ │ │ │ ├── dictionary_decompress.c │ │ │ │ ├── dictionary_loader.c │ │ │ │ ├── dictionary_round_trip.c │ │ │ │ ├── dictionary_stream_round_trip.c │ │ │ │ ├── fse_read_ncount.c │ │ │ │ ├── fuzz.h │ │ │ │ ├── fuzz.py │ │ │ │ ├── fuzz_data_producer.c │ │ │ │ ├── fuzz_data_producer.h │ │ │ │ ├── fuzz_helpers.c │ │ │ │ ├── fuzz_helpers.h │ │ │ │ ├── fuzz_third_party_seq_prod.h │ │ │ │ ├── generate_sequences.c │ │ │ │ ├── huf_decompress.c │ │ │ │ ├── huf_round_trip.c │ │ │ │ ├── raw_dictionary_round_trip.c │ │ │ │ ├── regression_driver.c │ │ │ │ ├── seekable_roundtrip.c │ │ │ │ ├── seq_prod_fuzz_example │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ └── example_seq_prod.c │ │ │ │ ├── sequence_compression_api.c │ │ │ │ ├── simple_compress.c │ │ │ │ ├── simple_decompress.c │ │ │ │ ├── simple_round_trip.c │ │ │ │ ├── stream_decompress.c │ │ │ │ ├── stream_round_trip.c │ │ │ │ ├── zstd_frame_info.c │ │ │ │ ├── zstd_helpers.c │ │ │ │ └── zstd_helpers.h │ │ │ ├── fuzzer.c │ │ │ ├── golden-compression │ │ │ │ ├── PR-3517-block-splitter-corruption-test │ │ │ │ ├── http │ │ │ │ ├── huffman-compressed-larger │ │ │ │ └── large-literal-and-match-lengths │ │ │ ├── golden-decompression-errors │ │ │ │ ├── .gitignore │ │ │ │ ├── off0.bin.zst │ │ │ │ └── zeroSeq_extraneous.zst │ │ │ ├── golden-decompression │ │ │ │ ├── block-128k.zst │ │ │ │ ├── empty-block.zst │ │ │ │ ├── rle-first-block.zst │ │ │ │ └── zeroSeq_2B.zst │ │ │ ├── golden-dictionaries │ │ │ │ └── http-dict-missing-symbols │ │ │ ├── gzip │ │ │ │ ├── Makefile │ │ │ │ ├── gzip-env.sh │ │ │ │ ├── helin-segv.sh │ │ │ │ ├── help-version.sh │ │ │ │ ├── hufts-segv.gz │ │ │ │ ├── hufts.sh │ │ │ │ ├── init.cfg │ │ │ │ ├── init.sh │ │ │ │ ├── keep.sh │ │ │ │ ├── list.sh │ │ │ │ ├── memcpy-abuse.sh │ │ │ │ ├── mixed.sh │ │ │ │ ├── null-suffix-clobber.sh │ │ │ │ ├── stdin.sh │ │ │ │ ├── test-driver.sh │ │ │ │ ├── trailing-nul.sh │ │ │ │ ├── unpack-invalid.sh │ │ │ │ ├── z-suffix.sh │ │ │ │ ├── zdiff.sh │ │ │ │ ├── zgrep-context.sh │ │ │ │ ├── zgrep-f.sh │ │ │ │ ├── zgrep-signal.sh │ │ │ │ └── znew-k.sh │ │ │ ├── invalidDictionaries.c │ │ │ ├── legacy.c │ │ │ ├── libzstd_builds.sh │ │ │ ├── longmatch.c │ │ │ ├── loremOut.c │ │ │ ├── loremOut.h │ │ │ ├── paramgrill.c │ │ │ ├── playTests.sh │ │ │ ├── poolTests.c │ │ │ ├── rateLimiter.py │ │ │ ├── regression │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── config.c │ │ │ │ ├── config.h │ │ │ │ ├── data.c │ │ │ │ ├── data.h │ │ │ │ ├── levels.h │ │ │ │ ├── method.c │ │ │ │ ├── method.h │ │ │ │ ├── result.c │ │ │ │ ├── result.h │ │ │ │ ├── results.csv │ │ │ │ └── test.c │ │ │ ├── roundTripCrash.c │ │ │ ├── seqgen.c │ │ │ ├── seqgen.h │ │ │ ├── test-license.py │ │ │ ├── test-variants.sh │ │ │ ├── test-zstd-versions.py │ │ │ └── zstreamtest.c │ │ │ └── zlibWrapper │ │ │ ├── .gitignore │ │ │ ├── BUCK │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── examples │ │ │ ├── example.c │ │ │ ├── example_original.c │ │ │ ├── fitblk.c │ │ │ ├── fitblk_original.c │ │ │ ├── minigzip.c │ │ │ └── zwrapbench.c │ │ │ ├── gzclose.c │ │ │ ├── gzcompatibility.h │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── zstd_zlibwrapper.c │ │ │ └── zstd_zlibwrapper.h │ ├── include │ │ ├── dr_libs │ │ │ └── dr_flac.h │ │ └── libchdr │ │ │ ├── bitstream.h │ │ │ ├── cdrom.h │ │ │ ├── chd.h │ │ │ ├── chdconfig.h │ │ │ ├── coretypes.h │ │ │ ├── flac.h │ │ │ └── huffman.h │ ├── pkg-config.pc.in │ ├── src │ │ ├── libchdr_bitstream.c │ │ ├── libchdr_cdrom.c │ │ ├── libchdr_chd.c │ │ ├── libchdr_flac.c │ │ ├── libchdr_huffman.c │ │ └── link.T │ └── tests │ │ ├── CMakeLists.txt │ │ ├── benchmark.c │ │ └── fuzz.c ├── libretro-common │ ├── .gitignore │ ├── .gitrepo │ ├── Makefile.test │ ├── audio │ │ ├── audio_mix.c │ │ ├── audio_mixer.c │ │ ├── conversion │ │ │ ├── float_to_s16.c │ │ │ ├── float_to_s16_neon.S │ │ │ ├── float_to_s16_neon.c │ │ │ ├── mono_to_stereo_float.c │ │ │ ├── s16_to_float.c │ │ │ ├── s16_to_float_neon.S │ │ │ ├── s16_to_float_neon.c │ │ │ └── stereo_to_mono_float.c │ │ ├── dsp_filter.c │ │ ├── dsp_filters │ │ │ ├── BassBoost.dsp │ │ │ ├── ChipTune-Lowpass.dsp │ │ │ ├── ChipTuneEnhance.dsp │ │ │ ├── Chorus.dsp │ │ │ ├── Crystalizer.dsp │ │ │ ├── EQ.dsp │ │ │ ├── Echo.dsp │ │ │ ├── EchoReverb.dsp │ │ │ ├── HighShelfDampen.dsp │ │ │ ├── IIR.dsp │ │ │ ├── LowPassCPS.dsp │ │ │ ├── Makefile │ │ │ ├── Mono.dsp │ │ │ ├── Panning.dsp │ │ │ ├── Phaser.dsp │ │ │ ├── Reverb.dsp │ │ │ ├── Tremolo.dsp │ │ │ ├── Vibrato.dsp │ │ │ ├── WahWah.dsp │ │ │ ├── chorus.c │ │ │ ├── configure │ │ │ ├── crystalizer.c │ │ │ ├── echo.c │ │ │ ├── eq.c │ │ │ ├── fft │ │ │ │ ├── fft.c │ │ │ │ └── fft.h │ │ │ ├── iir.c │ │ │ ├── link.T │ │ │ ├── panning.c │ │ │ ├── phaser.c │ │ │ ├── reverb.c │ │ │ ├── tremolo.c │ │ │ ├── vibrato.c │ │ │ └── wahwah.c │ │ └── resampler │ │ │ ├── audio_resampler.c │ │ │ └── drivers │ │ │ ├── nearest_resampler.c │ │ │ ├── sinc_resampler.c │ │ │ └── sinc_resampler_neon.S │ ├── cdrom │ │ └── cdrom.c │ ├── compat │ │ ├── compat_fnmatch.c │ │ ├── compat_getopt.c │ │ ├── compat_ifaddrs.c │ │ ├── compat_posix_string.c │ │ ├── compat_snprintf.c │ │ ├── compat_strcasestr.c │ │ ├── compat_strl.c │ │ ├── compat_strldup.c │ │ ├── compat_vscprintf.c │ │ └── fopen_utf8.c │ ├── crt │ │ ├── include │ │ │ └── string.h │ │ └── string.c │ ├── dynamic │ │ └── dylib.c │ ├── encodings │ │ ├── encoding_base64.c │ │ ├── encoding_crc32.c │ │ └── encoding_utf.c │ ├── features │ │ └── features_cpu.c │ ├── file │ │ ├── archive_file.c │ │ ├── archive_file_7z.c │ │ ├── archive_file_zlib.c │ │ ├── config_file.c │ │ ├── config_file_userdata.c │ │ ├── file_path.c │ │ ├── file_path_io.c │ │ ├── nbio │ │ │ ├── nbio_intf.c │ │ │ ├── nbio_linux.c │ │ │ ├── nbio_orbis.c │ │ │ ├── nbio_stdio.c │ │ │ ├── nbio_unixmmap.c │ │ │ └── nbio_windowsmmap.c │ │ └── retro_dirent.c │ ├── formats │ │ ├── bmp │ │ │ ├── rbmp.c │ │ │ └── rbmp_encode.c │ │ ├── cdfs │ │ │ └── cdfs.c │ │ ├── image_texture.c │ │ ├── image_transfer.c │ │ ├── jpeg │ │ │ └── rjpeg.c │ │ ├── json │ │ │ └── rjson.c │ │ ├── libchdr │ │ │ ├── libchdr_bitstream.c │ │ │ ├── libchdr_cdrom.c │ │ │ ├── libchdr_chd.c │ │ │ ├── libchdr_flac.c │ │ │ ├── libchdr_flac_codec.c │ │ │ ├── libchdr_huffman.c │ │ │ ├── libchdr_lzma.c │ │ │ └── libchdr_zlib.c │ │ ├── logiqx_dat │ │ │ └── logiqx_dat.c │ │ ├── m3u │ │ │ └── m3u_file.c │ │ ├── png │ │ │ ├── rpng.c │ │ │ ├── rpng_encode.c │ │ │ └── rpng_internal.h │ │ ├── tga │ │ │ └── rtga.c │ │ ├── wav │ │ │ └── rwav.c │ │ └── xml │ │ │ ├── rxml.c │ │ │ └── test │ │ │ ├── Makefile │ │ │ └── rxml_test.c │ ├── gfx │ │ ├── gl_capabilities.c │ │ └── scaler │ │ │ ├── pixconv.c │ │ │ ├── scaler.c │ │ │ ├── scaler_filter.c │ │ │ └── scaler_int.c │ ├── glsm │ │ └── glsm.c │ ├── glsym │ │ ├── README.md │ │ ├── glgen.py │ │ ├── glsym_es2.c │ │ ├── glsym_es3.c │ │ ├── glsym_gl.c │ │ ├── rglgen.c │ │ ├── rglgen.py │ │ └── xglgen.py │ ├── hash │ │ └── lrc_hash.c │ ├── include │ │ ├── array │ │ │ ├── rbuf.h │ │ │ └── rhmap.h │ │ ├── audio │ │ │ ├── audio_mix.h │ │ │ ├── audio_mixer.h │ │ │ ├── audio_resampler.h │ │ │ ├── conversion │ │ │ │ ├── dual_mono.h │ │ │ │ ├── float_to_s16.h │ │ │ │ └── s16_to_float.h │ │ │ └── dsp_filter.h │ │ ├── boolean.h │ │ ├── cdrom │ │ │ └── cdrom.h │ │ ├── clamping.h │ │ ├── compat │ │ │ ├── apple_compat.h │ │ │ ├── fnmatch.h │ │ │ ├── fopen_utf8.h │ │ │ ├── getopt.h │ │ │ ├── ifaddrs.h │ │ │ ├── intrinsics.h │ │ │ ├── msvc.h │ │ │ ├── msvc │ │ │ │ └── stdint.h │ │ │ ├── posix_string.h │ │ │ ├── strcasestr.h │ │ │ ├── strl.h │ │ │ ├── zconf.h │ │ │ ├── zconf.h.in │ │ │ ├── zlib.h │ │ │ ├── zlib │ │ │ │ ├── zconf.h │ │ │ │ ├── zconf.h.in │ │ │ │ ├── zlib.h │ │ │ │ └── zutil.h │ │ │ └── zutil.h │ │ ├── defines │ │ │ ├── cocoa_defines.h │ │ │ ├── d3d_defines.h │ │ │ ├── gx_defines.h │ │ │ ├── ps3_defines.h │ │ │ ├── ps4_defines.h │ │ │ └── psp_defines.h │ │ ├── dynamic │ │ │ └── dylib.h │ │ ├── encodings │ │ │ ├── base64.h │ │ │ ├── crc32.h │ │ │ ├── utf.h │ │ │ └── win32.h │ │ ├── fastcpy.h │ │ ├── features │ │ │ └── features_cpu.h │ │ ├── file │ │ │ ├── archive_file.h │ │ │ ├── config_file.h │ │ │ ├── config_file_userdata.h │ │ │ ├── file_path.h │ │ │ └── nbio.h │ │ ├── filters.h │ │ ├── formats │ │ │ ├── cdfs.h │ │ │ ├── image.h │ │ │ ├── logiqx_dat.h │ │ │ ├── m3u_file.h │ │ │ ├── rbmp.h │ │ │ ├── rjpeg.h │ │ │ ├── rjson.h │ │ │ ├── rjson_helpers.h │ │ │ ├── rpng.h │ │ │ ├── rtga.h │ │ │ ├── rwav.h │ │ │ └── rxml.h │ │ ├── gfx │ │ │ ├── gl_capabilities.h │ │ │ ├── math │ │ │ │ ├── matrix_3x3.h │ │ │ │ ├── matrix_4x4.h │ │ │ │ ├── vector_2.h │ │ │ │ ├── vector_3.h │ │ │ │ └── vector_4.h │ │ │ ├── scaler │ │ │ │ ├── filter.h │ │ │ │ ├── pixconv.h │ │ │ │ ├── scaler.h │ │ │ │ └── scaler_int.h │ │ │ └── video_frame.h │ │ ├── glsm │ │ │ ├── glsm.h │ │ │ └── glsmsym.h │ │ ├── glsym │ │ │ ├── glsym.h │ │ │ ├── glsym_es2.h │ │ │ ├── glsym_es3.h │ │ │ ├── glsym_gl.h │ │ │ ├── rglgen.h │ │ │ ├── rglgen_headers.h │ │ │ ├── rglgen_private_headers.h │ │ │ └── switch │ │ │ │ ├── nx_gl.h │ │ │ │ └── nx_glsym.h │ │ ├── libchdr │ │ │ ├── bitstream.h │ │ │ ├── cdrom.h │ │ │ ├── chd.h │ │ │ ├── coretypes.h │ │ │ ├── flac.h │ │ │ ├── huffman.h │ │ │ ├── libchdr_zlib.h │ │ │ ├── lzma.h │ │ │ └── minmax.h │ │ ├── libco.h │ │ ├── libretro.h │ │ ├── libretro_d3d.h │ │ ├── libretro_dspfilter.h │ │ ├── libretro_gskit_ps2.h │ │ ├── libretro_vulkan.h │ │ ├── lists │ │ │ ├── dir_list.h │ │ │ ├── file_list.h │ │ │ ├── linked_list.h │ │ │ ├── nested_list.h │ │ │ └── string_list.h │ │ ├── lrc_hash.h │ │ ├── math │ │ │ ├── complex.h │ │ │ ├── float_minmax.h │ │ │ └── fxp.h │ │ ├── media │ │ │ └── media_detect_cd.h │ │ ├── memalign.h │ │ ├── memmap.h │ │ ├── net │ │ │ ├── net_compat.h │ │ │ ├── net_http.h │ │ │ ├── net_http_parse.h │ │ │ ├── net_ifinfo.h │ │ │ ├── net_socket.h │ │ │ └── net_socket_ssl.h │ │ ├── playlists │ │ │ └── label_sanitization.h │ │ ├── queues │ │ │ ├── fifo_queue.h │ │ │ ├── generic_queue.h │ │ │ ├── message_queue.h │ │ │ └── task_queue.h │ │ ├── retro_assert.h │ │ ├── retro_common.h │ │ ├── retro_common_api.h │ │ ├── retro_dirent.h │ │ ├── retro_endianness.h │ │ ├── retro_environment.h │ │ ├── retro_inline.h │ │ ├── retro_math.h │ │ ├── retro_miscellaneous.h │ │ ├── retro_stat.h │ │ ├── retro_timers.h │ │ ├── rthreads │ │ │ ├── async_job.h │ │ │ ├── rthreads.h │ │ │ └── tpool.h │ │ ├── streams │ │ │ ├── chd_stream.h │ │ │ ├── file_stream.h │ │ │ ├── file_stream_transforms.h │ │ │ ├── interface_stream.h │ │ │ ├── memory_stream.h │ │ │ ├── network_stream.h │ │ │ ├── rzip_stream.h │ │ │ ├── stdin_stream.h │ │ │ └── trans_stream.h │ │ ├── string │ │ │ └── stdstring.h │ │ ├── time │ │ │ └── rtime.h │ │ ├── utils │ │ │ └── md5.h │ │ ├── vfs │ │ │ ├── vfs.h │ │ │ ├── vfs_implementation.h │ │ │ └── vfs_implementation_cdrom.h │ │ └── vulkan │ │ │ └── vulkan_symbol_wrapper.h │ ├── libco │ │ ├── aarch64.c │ │ ├── amd64.c │ │ ├── armeabi.c │ │ ├── fiber.c │ │ ├── genode.cpp │ │ ├── libco.c │ │ ├── ppc.c │ │ ├── ps2.c │ │ ├── ps3.S │ │ ├── psp1.c │ │ ├── psp2.c │ │ ├── scefiber.c │ │ ├── sjlj.c │ │ ├── ucontext.c │ │ └── x86.c │ ├── lists │ │ ├── dir_list.c │ │ ├── file_list.c │ │ ├── linked_list.c │ │ ├── nested_list.c │ │ ├── string_list.c │ │ └── vector_list.c │ ├── media │ │ └── media_detect_cd.c │ ├── memmap │ │ ├── memalign.c │ │ └── memmap.c │ ├── net │ │ ├── net_compat.c │ │ ├── net_http.c │ │ ├── net_http_parse.c │ │ ├── net_ifinfo.c │ │ ├── net_socket.c │ │ ├── net_socket_ssl_bear.c │ │ └── net_socket_ssl_mbed.c │ ├── playlists │ │ └── label_sanitization.c │ ├── queues │ │ ├── fifo_queue.c │ │ ├── generic_queue.c │ │ ├── message_queue.c │ │ └── task_queue.c │ ├── rthreads │ │ ├── ctr_pthread.h │ │ ├── gx_pthread.h │ │ ├── psp_pthread.h │ │ ├── rthreads.c │ │ ├── tpool.c │ │ ├── wiiu_pthread.h │ │ └── xenon_sdl_threads.c │ ├── samples │ │ ├── compat │ │ │ ├── fnmatch │ │ │ │ ├── Makefile │ │ │ │ └── compat_fnmatch_test.c │ │ │ ├── snprintf │ │ │ │ ├── Makefile │ │ │ │ └── snprintf_test.c │ │ │ └── strl │ │ │ │ ├── Makefile │ │ │ │ └── strl_test.c │ │ ├── core_options │ │ │ ├── README.md │ │ │ ├── example_categories │ │ │ │ ├── conversion_scripts │ │ │ │ │ ├── core_option_regex.py │ │ │ │ │ └── v1_to_v2_converter.py │ │ │ │ ├── libretro_core_options.h │ │ │ │ └── libretro_core_options_intl.h │ │ │ ├── example_default │ │ │ │ ├── libretro_core_options.h │ │ │ │ └── libretro_core_options_intl.h │ │ │ ├── example_hide_option │ │ │ │ ├── libretro_core_options.h │ │ │ │ └── libretro_core_options_intl.h │ │ │ └── example_translation │ │ │ │ ├── libretro_core_options.h │ │ │ │ ├── libretro_core_options_intl.h │ │ │ │ └── translation scripts │ │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ ├── crowdin_intl.yml │ │ │ │ │ └── crowdin_prep.yml │ │ │ │ ├── crowdin.yml │ │ │ │ ├── instructions.txt │ │ │ │ └── intl │ │ │ │ ├── .gitignore │ │ │ │ ├── core_opt_translation.py │ │ │ │ ├── core_option_regex.py │ │ │ │ ├── crowdin_intl.py │ │ │ │ ├── crowdin_prep.py │ │ │ │ └── v1_to_v2_converter.py │ │ ├── file │ │ │ ├── config_file │ │ │ │ ├── Makefile │ │ │ │ └── config_file_test.c │ │ │ └── nbio │ │ │ │ ├── Makefile │ │ │ │ └── nbio_test.c │ │ ├── formats │ │ │ ├── png │ │ │ │ ├── Makefile │ │ │ │ └── rpng_test.c │ │ │ └── xml │ │ │ │ ├── Makefile │ │ │ │ └── rxml_test.c │ │ ├── net │ │ │ ├── Makefile │ │ │ ├── http_test │ │ │ ├── net_http_parse_test.c │ │ │ ├── net_http_test.c │ │ │ ├── net_ifinfo │ │ │ ├── net_ifinfo_test.c │ │ │ └── udp-test.c │ │ ├── streams │ │ │ └── rzip │ │ │ │ ├── Makefile │ │ │ │ └── rzip.c │ │ └── utils │ │ │ ├── Makefile │ │ │ ├── crc32.c │ │ │ ├── md5_test.c │ │ │ └── sha1_main.c │ ├── streams │ │ ├── chd_stream.c │ │ ├── file_stream.c │ │ ├── file_stream_transforms.c │ │ ├── interface_stream.c │ │ ├── memory_stream.c │ │ ├── network_stream.c │ │ ├── rzip_stream.c │ │ ├── stdin_stream.c │ │ ├── trans_stream.c │ │ ├── trans_stream_pipe.c │ │ └── trans_stream_zlib.c │ ├── string │ │ └── stdstring.c │ ├── test │ │ ├── hash │ │ │ └── test_hash.c │ │ ├── lists │ │ │ └── test_linked_list.c │ │ ├── queues │ │ │ └── test_generic_queue.c │ │ ├── string │ │ │ └── test_stdstring.c │ │ └── utils │ │ │ └── test_utils.c │ ├── time │ │ └── rtime.c │ ├── utils │ │ ├── debugbreak │ │ │ └── debugbreak.c │ │ ├── djb2.c │ │ ├── md5.c │ │ └── sha1.c │ ├── vfs │ │ ├── vfs_implementation.c │ │ ├── vfs_implementation_cdrom.c │ │ └── vfs_implementation_uwp.cpp │ └── vulkan │ │ └── vulkan_symbol_wrapper.c ├── lightning │ ├── .gitattributes │ ├── .gitignore │ ├── .gitmodules │ ├── .gitrepo │ ├── AUTHORS │ ├── COPYING │ ├── COPYING.DOC │ ├── COPYING.LESSER │ ├── ChangeLog │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── README-hacking │ ├── THANKS │ ├── TODO │ ├── bootstrap │ ├── bootstrap.conf │ ├── check │ │ ├── .gitignore │ │ ├── 3to2.ok │ │ ├── 3to2.tst │ │ ├── Makefile.am │ │ ├── add.ok │ │ ├── add.tst │ │ ├── align.ok │ │ ├── align.tst │ │ ├── all.tst │ │ ├── allocai.ok │ │ ├── allocai.tst │ │ ├── allocar.ok │ │ ├── allocar.tst │ │ ├── alu.inc │ │ ├── alu_add.ok │ │ ├── alu_add.tst │ │ ├── alu_and.ok │ │ ├── alu_and.tst │ │ ├── alu_com.ok │ │ ├── alu_com.tst │ │ ├── alu_div.ok │ │ ├── alu_div.tst │ │ ├── alu_hmul.ok │ │ ├── alu_hmul.tst │ │ ├── alu_lsh.ok │ │ ├── alu_lsh.tst │ │ ├── alu_mul.ok │ │ ├── alu_mul.tst │ │ ├── alu_neg.ok │ │ ├── alu_neg.tst │ │ ├── alu_or.ok │ │ ├── alu_or.tst │ │ ├── alu_rem.ok │ │ ├── alu_rem.tst │ │ ├── alu_rot.ok │ │ ├── alu_rot.tst │ │ ├── alu_rsb.ok │ │ ├── alu_rsb.tst │ │ ├── alu_rsh.ok │ │ ├── alu_rsh.tst │ │ ├── alu_sub.ok │ │ ├── alu_sub.tst │ │ ├── alu_xor.ok │ │ ├── alu_xor.tst │ │ ├── alux_add.ok │ │ ├── alux_add.tst │ │ ├── alux_sub.ok │ │ ├── alux_sub.tst │ │ ├── bit.ok │ │ ├── bit.tst │ │ ├── bp.ok │ │ ├── bp.tst │ │ ├── branch.ok │ │ ├── branch.tst │ │ ├── bswap.ok │ │ ├── bswap.tst │ │ ├── call.ok │ │ ├── call.tst │ │ ├── callee.c │ │ ├── carg.c │ │ ├── carry.ok │ │ ├── carry.tst │ │ ├── catomic.c │ │ ├── catomic.ok │ │ ├── ccall.c │ │ ├── check.arm.sh │ │ ├── check.arm.swf.sh │ │ ├── check.arm4.swf.sh │ │ ├── check.nodata.sh │ │ ├── check.sh │ │ ├── check.swf.sh │ │ ├── check.x87.nodata.sh │ │ ├── check.x87.sh │ │ ├── cldstxba.c │ │ ├── clobber.ok │ │ ├── clobber.tst │ │ ├── collatz.tst │ │ ├── ctramp.c │ │ ├── cva_list.c │ │ ├── cvt.ok │ │ ├── cvt.tst │ │ ├── divi.ok │ │ ├── divi.tst │ │ ├── ext.ok │ │ ├── ext.tst │ │ ├── factorial.tst │ │ ├── fib.ok │ │ ├── fib.tst │ │ ├── float.ok │ │ ├── float.tst │ │ ├── fma.ok │ │ ├── fma.tst │ │ ├── fop_abs.ok │ │ ├── fop_abs.tst │ │ ├── fop_sqrt.ok │ │ ├── fop_sqrt.tst │ │ ├── gen_cbit.c │ │ ├── hton.ok │ │ ├── hton.tst │ │ ├── imm.ok │ │ ├── imm.tst │ │ ├── jmpr.ok │ │ ├── jmpr.tst │ │ ├── ldst.inc │ │ ├── ldsti.ok │ │ ├── ldsti.tst │ │ ├── ldstr-c.ok │ │ ├── ldstr-c.tst │ │ ├── ldstr.ok │ │ ├── ldstr.tst │ │ ├── ldstxbai.ok │ │ ├── ldstxbai.tst │ │ ├── ldstxbar.ok │ │ ├── ldstxbar.tst │ │ ├── ldstxi-c.ok │ │ ├── ldstxi-c.tst │ │ ├── ldstxi.ok │ │ ├── ldstxi.tst │ │ ├── ldstxr-c.ok │ │ ├── ldstxr-c.tst │ │ ├── ldstxr.ok │ │ ├── ldstxr.tst │ │ ├── lightning.c │ │ ├── live.ok │ │ ├── live.tst │ │ ├── movzr.ok │ │ ├── movzr.tst │ │ ├── nodata.c │ │ ├── popcnt.ok │ │ ├── popcnt.tst │ │ ├── protect.c │ │ ├── put.ok │ │ ├── put.tst │ │ ├── qalu.inc │ │ ├── qalu_div.ok │ │ ├── qalu_div.tst │ │ ├── qalu_mul.ok │ │ ├── qalu_mul.tst │ │ ├── qalu_shift.ok │ │ ├── qalu_shift.tst │ │ ├── range.ok │ │ ├── range.tst │ │ ├── ranger.ok │ │ ├── ranger.tst │ │ ├── rbit.ok │ │ ├── rbit.tst │ │ ├── ret.ok │ │ ├── ret.tst │ │ ├── riprel.c │ │ ├── riprel.ok │ │ ├── rpn.ok │ │ ├── rpn.tst │ │ ├── run-test │ │ ├── self.c │ │ ├── setcode.c │ │ ├── skip.ok │ │ ├── skip.tst │ │ ├── stack.ok │ │ ├── stack.tst │ │ ├── tramp.ok │ │ ├── tramp.tst │ │ ├── unldst.ok │ │ ├── unldst.tst │ │ ├── va_list.ok │ │ ├── va_list.tst │ │ ├── varargs.ok │ │ └── varargs.tst │ ├── configure.ac │ ├── doc │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── body.texi │ │ ├── fact.c │ │ ├── ifib.c │ │ ├── incr.c │ │ ├── lightning.texi │ │ ├── printf.c │ │ ├── rfib.c │ │ └── rpn.c │ ├── gnulib-lib │ │ └── .gitignore │ ├── include │ │ ├── Makefile.am │ │ ├── lightning.h.in │ │ └── lightning │ │ │ ├── Makefile.am │ │ │ ├── jit_aarch64.h │ │ │ ├── jit_alpha.h │ │ │ ├── jit_arm.h │ │ │ ├── jit_hppa.h │ │ │ ├── jit_ia64.h │ │ │ ├── jit_loongarch.h │ │ │ ├── jit_mips.h │ │ │ ├── jit_ppc.h │ │ │ ├── jit_private.h │ │ │ ├── jit_riscv.h │ │ │ ├── jit_s390.h │ │ │ ├── jit_sh.h │ │ │ ├── jit_sparc.h │ │ │ └── jit_x86.h │ ├── lib │ │ ├── Makefile.am │ │ ├── aarch64-logical-immediates.c │ │ ├── jit_aarch64-cpu.c │ │ ├── jit_aarch64-fpu.c │ │ ├── jit_aarch64-sz.c │ │ ├── jit_aarch64.c │ │ ├── jit_alpha-cpu.c │ │ ├── jit_alpha-fpu.c │ │ ├── jit_alpha-sz.c │ │ ├── jit_alpha.c │ │ ├── jit_arm-cpu.c │ │ ├── jit_arm-swf.c │ │ ├── jit_arm-sz.c │ │ ├── jit_arm-vfp.c │ │ ├── jit_arm.c │ │ ├── jit_disasm.c │ │ ├── jit_fallback.c │ │ ├── jit_hppa-cpu.c │ │ ├── jit_hppa-fpu.c │ │ ├── jit_hppa-sz.c │ │ ├── jit_hppa.c │ │ ├── jit_ia64-cpu.c │ │ ├── jit_ia64-fpu.c │ │ ├── jit_ia64-sz.c │ │ ├── jit_ia64.c │ │ ├── jit_loongarch-cpu.c │ │ ├── jit_loongarch-fpu.c │ │ ├── jit_loongarch-sz.c │ │ ├── jit_loongarch.c │ │ ├── jit_memory.c │ │ ├── jit_mips-cpu.c │ │ ├── jit_mips-fpu.c │ │ ├── jit_mips-sz.c │ │ ├── jit_mips.c │ │ ├── jit_names.c │ │ ├── jit_note.c │ │ ├── jit_ppc-cpu.c │ │ ├── jit_ppc-fpu.c │ │ ├── jit_ppc-sz.c │ │ ├── jit_ppc.c │ │ ├── jit_print.c │ │ ├── jit_rewind.c │ │ ├── jit_riscv-cpu.c │ │ ├── jit_riscv-fpu.c │ │ ├── jit_riscv-sz.c │ │ ├── jit_riscv.c │ │ ├── jit_s390-cpu.c │ │ ├── jit_s390-fpu.c │ │ ├── jit_s390-sz.c │ │ ├── jit_s390.c │ │ ├── jit_sh-cpu.c │ │ ├── jit_sh-fpu.c │ │ ├── jit_sh-sz.c │ │ ├── jit_sh.c │ │ ├── jit_size.c │ │ ├── jit_sparc-cpu.c │ │ ├── jit_sparc-fpu.c │ │ ├── jit_sparc-sz.c │ │ ├── jit_sparc.c │ │ ├── jit_x86-cpu.c │ │ ├── jit_x86-sse.c │ │ ├── jit_x86-sz.c │ │ ├── jit_x86-x87.c │ │ ├── jit_x86.c │ │ └── lightning.c │ ├── lightning.pc.in │ ├── m4 │ │ ├── .gitignore │ │ ├── .gitkeep │ │ └── gnulib-cache.m4 │ └── size.c ├── lightrec │ ├── .gitignore │ ├── .gitrepo │ ├── CMakeLists.txt │ ├── COPYING │ ├── README.md │ ├── arch.h │ ├── blockcache.c │ ├── blockcache.h │ ├── constprop.c │ ├── constprop.h │ ├── debug.h │ ├── disassembler.c │ ├── disassembler.h │ ├── emitter.c │ ├── emitter.h │ ├── interpreter.c │ ├── interpreter.h │ ├── lightning-wrapper.h │ ├── lightrec-config.h.cmakein │ ├── lightrec-private.h │ ├── lightrec.c │ ├── lightrec.h │ ├── memmanager.c │ ├── memmanager.h │ ├── optimizer.c │ ├── optimizer.h │ ├── reaper.c │ ├── reaper.h │ ├── recompiler.c │ ├── recompiler.h │ ├── regcache.c │ ├── regcache.h │ ├── slist.h │ └── tlsf │ │ ├── .gitrepo │ │ ├── README.md │ │ ├── tlsf.c │ │ └── tlsf.h └── mman │ ├── .gitignore │ ├── .gitrepo │ ├── .vs │ └── mman │ │ └── v14 │ │ └── .suo │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── UpgradeLog.htm │ ├── configure │ ├── mman-win32.pro │ ├── mman.c │ ├── mman.h │ ├── mman.sln │ ├── mman.vcxproj │ ├── mman.vcxproj.filters │ ├── mman.vcxproj.user │ └── test.c ├── frontend ├── 320240 │ ├── caanoo.gpe │ ├── haptic_s.cfg │ ├── haptic_w.cfg │ ├── pcsx26.png │ ├── pcsx_rearmed.ini │ ├── pcsxb.png │ ├── pollux_set.c │ ├── skin │ │ ├── background.png │ │ ├── font.png │ │ ├── readme.txt │ │ ├── selector.png │ │ └── skin.txt │ ├── ui_gp2x.h │ └── ui_miyoo.h ├── 3ds │ ├── 3ds_utils.h │ ├── pthread.h │ ├── semaphore.h │ ├── sys │ │ └── mman.h │ ├── utils.S │ ├── zconf.h │ └── zlib.h ├── Cheat.h ├── blit320.h ├── blit320.s ├── cspace.c ├── cspace.h ├── cspace_arm.S ├── cspace_neon.S ├── in_tsbutton.c ├── in_tsbutton.h ├── libretro-cdrom.c ├── libretro-cdrom.h ├── libretro-extern ├── libretro-extern.T ├── libretro-rthreads.c ├── libretro-rthreads.h ├── libretro-version-script ├── libretro.c ├── libretro_core_options.h ├── libretro_core_options_intl.h ├── main.c ├── main.h ├── menu.c ├── menu.h ├── nopic.h ├── pandora │ ├── pcsx.png │ ├── pcsx.pxml.templ │ ├── pcsx.sh │ ├── picorestore.c │ ├── readme.txt │ ├── skin │ │ ├── background.png │ │ ├── font.png │ │ ├── readme.txt │ │ ├── selector.png │ │ └── skin.txt │ └── ui_feat.h ├── pl_gun_ts.c ├── pl_gun_ts.h ├── plat.h ├── plat_dummy.c ├── plat_omap.c ├── plat_omap.h ├── plat_pandora.c ├── plat_pollux.c ├── plat_sdl.c ├── plugin.c ├── plugin.h ├── plugin_lib.c ├── plugin_lib.h ├── switch │ ├── sys │ │ └── mman.h │ ├── zconf.h │ └── zlib.h ├── vita │ ├── retro_inline.h │ └── sys │ │ └── mman.h └── wiiu │ └── coreinit │ └── memorymap.h ├── include ├── arm_features.h ├── compiler_features.h ├── config.h ├── libchdr │ └── chdconfig.h ├── lightning │ └── lightning.h ├── lightrec │ └── lightrec-config.h ├── mman │ └── sys │ │ └── mman.h ├── pcnt.h └── psemu_plugin_defs.h ├── jni ├── Android.mk └── Application.mk ├── libpcsxcore ├── cdriso.c ├── cdriso.h ├── cdrom-async.c ├── cdrom-async.h ├── cdrom.c ├── cdrom.h ├── cheat.c ├── cheat.h ├── coff.h ├── database.c ├── database.h ├── debug.c ├── debug.h ├── decode_xa.c ├── decode_xa.h ├── disr3000a.c ├── gpu.c ├── gpu.h ├── gte.c ├── gte.h ├── gte_arm.S ├── gte_arm.h ├── gte_divider.c ├── gte_divider.h ├── gte_neon.S ├── gte_neon.h ├── gte_nf.c ├── lightrec │ ├── big_ass_debugger.py │ ├── mem.c │ ├── mem.h │ ├── mem_wiiu.c │ ├── plugin.c │ ├── plugin.h │ └── sysconf.c ├── mdec.c ├── mdec.h ├── memmap.h ├── misc.c ├── misc.h ├── new_dynarec │ ├── assem_arm.c │ ├── assem_arm.h │ ├── assem_arm64.c │ ├── assem_arm64.h │ ├── emu_if.c │ ├── emu_if.h │ ├── linkage_arm.S │ ├── linkage_arm64.S │ ├── linkage_offsets.h │ ├── new_dynarec.c │ ├── new_dynarec.h │ ├── new_dynarec_config.h │ ├── patches │ │ ├── trace_drc_chk │ │ └── trace_intr │ ├── pcsxmem.c │ ├── pcsxmem.h │ └── pcsxmem_inline.c ├── plugins.c ├── plugins.h ├── ppf.c ├── ppf.h ├── psxbios.c ├── psxbios.h ├── psxcommon.c ├── psxcommon.h ├── psxcounters.c ├── psxcounters.h ├── psxdma.c ├── psxdma.h ├── psxevents.c ├── psxevents.h ├── psxhle.h ├── psxhw.c ├── psxhw.h ├── psxinterpreter.c ├── psxinterpreter.h ├── psxmem.c ├── psxmem.h ├── psxmem_map.h ├── r3000a.c ├── r3000a.h ├── sio.c ├── sio.h ├── sjisfont.h ├── socket.c ├── socket.h ├── spu.c ├── spu.h └── system.h ├── maemo ├── hildon.c └── main.c ├── miyoo └── pkg.cfg ├── plugins ├── cdrcimg │ ├── cdrcimg.c │ └── cdrcimg.h ├── dfsound │ ├── Makefile.c64p │ ├── adsr.c │ ├── alsa.c │ ├── arm_utils.S │ ├── dma.c │ ├── externals.h │ ├── freeze.c │ ├── gauss_i.h │ ├── nullsnd.c │ ├── oss.c │ ├── out.c │ ├── out.h │ ├── psemuxa.h │ ├── pulseaudio.c │ ├── registers.c │ ├── registers.h │ ├── reverb.c │ ├── sdl.c │ ├── spu.c │ ├── spu.h │ ├── spu_c64x.c │ ├── spu_c64x.h │ ├── spu_c64x_dspcode.c │ ├── spu_config.h │ ├── stdafx.h │ └── xa.c ├── dfxvideo │ ├── Makefile │ ├── draw.c │ ├── draw_pl.c │ ├── fps.c │ ├── gpu.c │ ├── gpu.h │ ├── gpulib_if.c │ ├── prim.c │ └── soft.c ├── gpu-gles │ ├── Makefile │ ├── gpuDraw.c │ ├── gpuDraw.h │ ├── gpuExternals.h │ ├── gpuFps.c │ ├── gpuFps.h │ ├── gpuPlugin.c │ ├── gpuPlugin.h │ ├── gpuPrim.c │ ├── gpuPrim.h │ ├── gpuStdafx.h │ ├── gpuTexture.c │ ├── gpuTexture.h │ ├── gpulib_if.c │ └── hud.c ├── gpu_neon │ ├── Makefile │ ├── psx_gpu │ │ ├── common.h │ │ ├── psx_gpu.c │ │ ├── psx_gpu.h │ │ ├── psx_gpu_4x.c │ │ ├── psx_gpu_arm_neon.S │ │ ├── psx_gpu_main.c │ │ ├── psx_gpu_offsets.h │ │ ├── psx_gpu_offsets_update.c │ │ ├── psx_gpu_parse.c │ │ ├── psx_gpu_simd.c │ │ ├── psx_gpu_simd.h │ │ ├── psx_gpu_standard.c │ │ ├── tests │ │ │ ├── Makefile │ │ │ └── psx_dump_check.sh │ │ ├── vector_ops.h │ │ └── vector_types.h │ └── psx_gpu_if.c ├── gpu_unai │ ├── Makefile │ ├── README_senquack.txt │ ├── debug.h │ ├── gpu.cpp │ ├── gpu.h │ ├── gpu_arm.S │ ├── gpu_arm.h │ ├── gpu_blit.h │ ├── gpu_command.h │ ├── gpu_fixedpoint.h │ ├── gpu_inner.h │ ├── gpu_inner_blend.h │ ├── gpu_inner_blend_arm.h │ ├── gpu_inner_blend_arm5.h │ ├── gpu_inner_blend_arm7.h │ ├── gpu_inner_light.h │ ├── gpu_inner_light_arm.h │ ├── gpu_inner_quantization.h │ ├── gpu_raster_image.h │ ├── gpu_raster_line.h │ ├── gpu_raster_polygon.h │ ├── gpu_raster_sprite.h │ ├── gpu_unai.h │ ├── gpulib_if.cpp │ ├── old │ │ ├── debug.h │ │ ├── gpu.cpp │ │ ├── gpu.h │ │ ├── gpu_blit.h │ │ ├── gpu_command.h │ │ ├── gpu_fixedpoint.h │ │ ├── gpu_inner.h │ │ ├── gpu_inner_blend.h │ │ ├── gpu_inner_light.h │ │ ├── gpu_raster_image.h │ │ ├── gpu_raster_line.h │ │ ├── gpu_raster_polygon.h │ │ ├── gpu_raster_sprite.h │ │ ├── if.cpp │ │ ├── if.h │ │ ├── port.h │ │ └── profiler.h │ ├── port.h │ └── profiler.h ├── gpulib │ ├── Makefile │ ├── Makefile.test │ ├── gpu.c │ ├── gpu.h │ ├── gpu_timing.h │ ├── gpulib.mak │ ├── gpulib_thread_if.c │ ├── gpulib_thread_if.h │ ├── prim.c │ ├── test.c │ ├── vout_pl.c │ └── vout_sdl.c └── spunull │ ├── Makefile │ ├── register.h │ ├── spunull.c │ └── xa.h └── tools ├── Makefile ├── gas-preprocessor.pl └── psxcimg.c /.github/ISSUE_TEMPLATE/report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/.github/ISSUE_TEMPLATE/report.yml -------------------------------------------------------------------------------- /.github/build-libretro-zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/.github/build-libretro-zip.sh -------------------------------------------------------------------------------- /.github/extract-foreign-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/.github/extract-foreign-all.sh -------------------------------------------------------------------------------- /.github/extract-foreign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/.github/extract-foreign.sh -------------------------------------------------------------------------------- /.github/workflows/ci-libretro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/.github/workflows/ci-libretro.yml -------------------------------------------------------------------------------- /.github/workflows/ci-linux-arm64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/.github/workflows/ci-linux-arm64.yml -------------------------------------------------------------------------------- /.github/workflows/ci-linux-armhf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/.github/workflows/ci-linux-armhf.yml -------------------------------------------------------------------------------- /.github/workflows/ci-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/.github/workflows/ci-linux.yml -------------------------------------------------------------------------------- /.github/workflows/dev-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/.github/workflows/dev-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/ChangeLog -------------------------------------------------------------------------------- /ChangeLog.df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/ChangeLog.df -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.libretro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/Makefile.libretro -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/README.md -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/configure -------------------------------------------------------------------------------- /deps/arm-mem/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/arm-mem/.gitrepo -------------------------------------------------------------------------------- /deps/arm-mem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/arm-mem/Makefile -------------------------------------------------------------------------------- /deps/arm-mem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/arm-mem/README.md -------------------------------------------------------------------------------- /deps/arm-mem/arm-mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/arm-mem/arm-mem.h -------------------------------------------------------------------------------- /deps/arm-mem/memcmp-v6l.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/arm-mem/memcmp-v6l.S -------------------------------------------------------------------------------- /deps/arm-mem/memcmp-v7l.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/arm-mem/memcmp-v7l.S -------------------------------------------------------------------------------- /deps/arm-mem/memcpymove-v6l.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/arm-mem/memcpymove-v6l.S -------------------------------------------------------------------------------- /deps/arm-mem/memcpymove-v7l.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/arm-mem/memcpymove-v7l.S -------------------------------------------------------------------------------- /deps/arm-mem/memset-v6l.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/arm-mem/memset-v6l.S -------------------------------------------------------------------------------- /deps/arm-mem/memset-v7l.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/arm-mem/memset-v7l.S -------------------------------------------------------------------------------- /deps/arm-mem/strlen-v7l.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/arm-mem/strlen-v7l.S -------------------------------------------------------------------------------- /deps/arm-mem/test-strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/arm-mem/test-strlen.c -------------------------------------------------------------------------------- /deps/arm-mem/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/arm-mem/test.c -------------------------------------------------------------------------------- /deps/libchdr/.github/workflows/bsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/.github/workflows/bsd.yml -------------------------------------------------------------------------------- /deps/libchdr/.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /deps/libchdr/.github/workflows/switch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/.github/workflows/switch.yml -------------------------------------------------------------------------------- /deps/libchdr/.github/workflows/vita.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/.github/workflows/vita.yml -------------------------------------------------------------------------------- /deps/libchdr/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.d 3 | build/ 4 | -------------------------------------------------------------------------------- /deps/libchdr/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/.gitrepo -------------------------------------------------------------------------------- /deps/libchdr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/CMakeLists.txt -------------------------------------------------------------------------------- /deps/libchdr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/LICENSE.txt -------------------------------------------------------------------------------- /deps/libchdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/README.md -------------------------------------------------------------------------------- /deps/libchdr/deps/lzma-24.05/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/lzma-24.05/CMakeLists.txt -------------------------------------------------------------------------------- /deps/libchdr/deps/lzma-24.05/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/lzma-24.05/LICENSE -------------------------------------------------------------------------------- /deps/libchdr/deps/lzma-24.05/include/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/lzma-24.05/include/Bra.h -------------------------------------------------------------------------------- /deps/libchdr/deps/lzma-24.05/include/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/lzma-24.05/include/Sort.h -------------------------------------------------------------------------------- /deps/libchdr/deps/lzma-24.05/src/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/lzma-24.05/src/Alloc.c -------------------------------------------------------------------------------- /deps/libchdr/deps/lzma-24.05/src/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/lzma-24.05/src/Bra.c -------------------------------------------------------------------------------- /deps/libchdr/deps/lzma-24.05/src/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/lzma-24.05/src/Bra86.c -------------------------------------------------------------------------------- /deps/libchdr/deps/lzma-24.05/src/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/lzma-24.05/src/BraIA64.c -------------------------------------------------------------------------------- /deps/libchdr/deps/lzma-24.05/src/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/lzma-24.05/src/CpuArch.c -------------------------------------------------------------------------------- /deps/libchdr/deps/lzma-24.05/src/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/lzma-24.05/src/Delta.c -------------------------------------------------------------------------------- /deps/libchdr/deps/lzma-24.05/src/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/lzma-24.05/src/LzFind.c -------------------------------------------------------------------------------- /deps/libchdr/deps/lzma-24.05/src/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/lzma-24.05/src/LzmaDec.c -------------------------------------------------------------------------------- /deps/libchdr/deps/lzma-24.05/src/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/lzma-24.05/src/LzmaEnc.c -------------------------------------------------------------------------------- /deps/libchdr/deps/lzma-24.05/src/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/lzma-24.05/src/Sort.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/CMakeLists.txt -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/ChangeLog -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/FAQ -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/INDEX -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/LICENSE -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/Makefile -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/Makefile.in -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/README -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/adler32.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/compress.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/configure -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/crc32.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/crc32.h -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/deflate.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/deflate.h -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/examples/gun.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/gzclose.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/gzguts.h -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/gzlib.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/gzread.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/gzwrite.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/infback.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/inffast.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/inffast.h -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/inffixed.h -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/inflate.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/inflate.h -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/inftrees.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/inftrees.h -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/make_vms.com -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/old/README -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/os400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/os400/bndsrc -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/os400/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/os400/make.sh -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/os400/zlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/os400/zlib.inc -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/test/example.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/treebuild.xml -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/trees.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/trees.h -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/uncompr.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/win32/zlib.def -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/win32/zlib1.rc -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/zconf.h -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/zconf.h.in -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/zlib.3 -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/zlib.3.pdf -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/zlib.h -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/zlib.map -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/zlib.pc.in -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/zutil.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zlib-1.3.1/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zlib-1.3.1/zutil.h -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/.buckconfig -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/.buckversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/.buckversion -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/.cirrus.yml -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/.gitattributes -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/.gitignore -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/CHANGELOG -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/COPYING -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/LICENSE -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/Makefile -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/Package.swift -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/README.md -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/SECURITY.md -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/TESTING.md -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/build/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/build/cmake/lib/.gitignore: -------------------------------------------------------------------------------- 1 | # cmake build artefact 2 | libzstd.pc 3 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/build/cmake/tests/.gitignore: -------------------------------------------------------------------------------- 1 | # produced by make 2 | datagen 3 | fullbench 4 | fuzzer 5 | paramgrill 6 | 7 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/contrib/diagnose_corruption/.gitignore: -------------------------------------------------------------------------------- 1 | check_flipped_bits 2 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/contrib/externalSequenceProducer/.gitignore: -------------------------------------------------------------------------------- 1 | # build artifacts 2 | externalSequenceProducer 3 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/contrib/pzstd/.gitignore: -------------------------------------------------------------------------------- 1 | # compilation result 2 | pzstd 3 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/contrib/seekable_format/tests/.gitignore: -------------------------------------------------------------------------------- 1 | seekable_tests 2 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/doc/README.md -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/doc/educational_decoder/.gitignore: -------------------------------------------------------------------------------- 1 | # Build artifacts 2 | harness 3 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/lib/.gitignore -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/lib/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/lib/BUCK -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/lib/Makefile -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/lib/README.md -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/lib/libzstd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/lib/libzstd.mk -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/lib/zdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/lib/zdict.h -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/lib/zstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/lib/zstd.h -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/programs/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/programs/BUCK -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/tests/Makefile -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/cli-tests/.gitignore: -------------------------------------------------------------------------------- 1 | !bin/ 2 | !datagen 3 | !zstdcat 4 | 5 | scratch/ 6 | bin/symlinks 7 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/cli-tests/basic/args.sh.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/cli-tests/bin/datagen: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$DATAGEN_BIN" $@ 4 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/cli-tests/bin/die: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | println "${*}" 1>&2 4 | exit 1 5 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/cli-tests/bin/println: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | printf '%b\n' "${*}" 3 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/cli-tests/bin/zstdgrep: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | "$ZSTDGREP_BIN" $@ 3 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/cli-tests/bin/zstdless: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | "$ZSTDLESS_BIN" $@ 3 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/cli-tests/cltools/zstdgrep.sh.exit: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/cli-tests/compression/window-resize.sh.stderr.ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/cli-tests/compression/window-resize.sh.stdout.glob: -------------------------------------------------------------------------------- 1 | ... 2 | Window Size: 1.000 GiB (1073741824 B) 3 | ... 4 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/cli-tests/dict-builder/empty-input.sh.stderr.exact: -------------------------------------------------------------------------------- 1 | zstd -q --train empty file* 2 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/cli-tests/dict-builder/no-inputs.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -v 3 | zstd --train 4 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/cli-tests/dict-builder/no-inputs.sh.exit: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/cli-tests/file-handling/directory-mirror.sh.stderr.exact: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/cli-tests/file-handling/directory-mirror.sh.stdout.exact: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/tests/fuzzer.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/golden-decompression-errors/.gitignore: -------------------------------------------------------------------------------- 1 | !*.zst 2 | -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/tests/legacy.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/seqgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/tests/seqgen.c -------------------------------------------------------------------------------- /deps/libchdr/deps/zstd-1.5.6/tests/seqgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/deps/zstd-1.5.6/tests/seqgen.h -------------------------------------------------------------------------------- /deps/libchdr/include/dr_libs/dr_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/include/dr_libs/dr_flac.h -------------------------------------------------------------------------------- /deps/libchdr/include/libchdr/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/include/libchdr/bitstream.h -------------------------------------------------------------------------------- /deps/libchdr/include/libchdr/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/include/libchdr/cdrom.h -------------------------------------------------------------------------------- /deps/libchdr/include/libchdr/chd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/include/libchdr/chd.h -------------------------------------------------------------------------------- /deps/libchdr/include/libchdr/chdconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/include/libchdr/chdconfig.h -------------------------------------------------------------------------------- /deps/libchdr/include/libchdr/coretypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/include/libchdr/coretypes.h -------------------------------------------------------------------------------- /deps/libchdr/include/libchdr/flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/include/libchdr/flac.h -------------------------------------------------------------------------------- /deps/libchdr/include/libchdr/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/include/libchdr/huffman.h -------------------------------------------------------------------------------- /deps/libchdr/pkg-config.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/pkg-config.pc.in -------------------------------------------------------------------------------- /deps/libchdr/src/libchdr_bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/src/libchdr_bitstream.c -------------------------------------------------------------------------------- /deps/libchdr/src/libchdr_cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/src/libchdr_cdrom.c -------------------------------------------------------------------------------- /deps/libchdr/src/libchdr_chd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/src/libchdr_chd.c -------------------------------------------------------------------------------- /deps/libchdr/src/libchdr_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/src/libchdr_flac.c -------------------------------------------------------------------------------- /deps/libchdr/src/libchdr_huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/src/libchdr_huffman.c -------------------------------------------------------------------------------- /deps/libchdr/src/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/src/link.T -------------------------------------------------------------------------------- /deps/libchdr/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/tests/CMakeLists.txt -------------------------------------------------------------------------------- /deps/libchdr/tests/benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/tests/benchmark.c -------------------------------------------------------------------------------- /deps/libchdr/tests/fuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libchdr/tests/fuzz.c -------------------------------------------------------------------------------- /deps/libretro-common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/.gitignore -------------------------------------------------------------------------------- /deps/libretro-common/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/.gitrepo -------------------------------------------------------------------------------- /deps/libretro-common/Makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/Makefile.test -------------------------------------------------------------------------------- /deps/libretro-common/audio/audio_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/audio/audio_mix.c -------------------------------------------------------------------------------- /deps/libretro-common/audio/audio_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/audio/audio_mixer.c -------------------------------------------------------------------------------- /deps/libretro-common/audio/dsp_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/audio/dsp_filter.c -------------------------------------------------------------------------------- /deps/libretro-common/audio/dsp_filters/configure: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | PACKAGE_NAME=retroarch-filters-audio -------------------------------------------------------------------------------- /deps/libretro-common/audio/dsp_filters/eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/audio/dsp_filters/eq.c -------------------------------------------------------------------------------- /deps/libretro-common/cdrom/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/cdrom/cdrom.c -------------------------------------------------------------------------------- /deps/libretro-common/compat/compat_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/compat/compat_getopt.c -------------------------------------------------------------------------------- /deps/libretro-common/compat/compat_strl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/compat/compat_strl.c -------------------------------------------------------------------------------- /deps/libretro-common/compat/fopen_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/compat/fopen_utf8.c -------------------------------------------------------------------------------- /deps/libretro-common/crt/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/crt/include/string.h -------------------------------------------------------------------------------- /deps/libretro-common/crt/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/crt/string.c -------------------------------------------------------------------------------- /deps/libretro-common/dynamic/dylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/dynamic/dylib.c -------------------------------------------------------------------------------- /deps/libretro-common/file/archive_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/file/archive_file.c -------------------------------------------------------------------------------- /deps/libretro-common/file/config_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/file/config_file.c -------------------------------------------------------------------------------- /deps/libretro-common/file/file_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/file/file_path.c -------------------------------------------------------------------------------- /deps/libretro-common/file/file_path_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/file/file_path_io.c -------------------------------------------------------------------------------- /deps/libretro-common/file/retro_dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/file/retro_dirent.c -------------------------------------------------------------------------------- /deps/libretro-common/formats/bmp/rbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/formats/bmp/rbmp.c -------------------------------------------------------------------------------- /deps/libretro-common/formats/cdfs/cdfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/formats/cdfs/cdfs.c -------------------------------------------------------------------------------- /deps/libretro-common/formats/png/rpng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/formats/png/rpng.c -------------------------------------------------------------------------------- /deps/libretro-common/formats/tga/rtga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/formats/tga/rtga.c -------------------------------------------------------------------------------- /deps/libretro-common/formats/wav/rwav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/formats/wav/rwav.c -------------------------------------------------------------------------------- /deps/libretro-common/formats/xml/rxml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/formats/xml/rxml.c -------------------------------------------------------------------------------- /deps/libretro-common/gfx/scaler/scaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/gfx/scaler/scaler.c -------------------------------------------------------------------------------- /deps/libretro-common/glsm/glsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/glsm/glsm.c -------------------------------------------------------------------------------- /deps/libretro-common/glsym/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/glsym/README.md -------------------------------------------------------------------------------- /deps/libretro-common/glsym/glgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/glsym/glgen.py -------------------------------------------------------------------------------- /deps/libretro-common/glsym/glsym_es2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/glsym/glsym_es2.c -------------------------------------------------------------------------------- /deps/libretro-common/glsym/glsym_es3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/glsym/glsym_es3.c -------------------------------------------------------------------------------- /deps/libretro-common/glsym/glsym_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/glsym/glsym_gl.c -------------------------------------------------------------------------------- /deps/libretro-common/glsym/rglgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/glsym/rglgen.c -------------------------------------------------------------------------------- /deps/libretro-common/glsym/rglgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/glsym/rglgen.py -------------------------------------------------------------------------------- /deps/libretro-common/glsym/xglgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/glsym/xglgen.py -------------------------------------------------------------------------------- /deps/libretro-common/hash/lrc_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/hash/lrc_hash.c -------------------------------------------------------------------------------- /deps/libretro-common/include/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/include/boolean.h -------------------------------------------------------------------------------- /deps/libretro-common/include/clamping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/include/clamping.h -------------------------------------------------------------------------------- /deps/libretro-common/include/fastcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/include/fastcpy.h -------------------------------------------------------------------------------- /deps/libretro-common/include/file/nbio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/include/file/nbio.h -------------------------------------------------------------------------------- /deps/libretro-common/include/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/include/filters.h -------------------------------------------------------------------------------- /deps/libretro-common/include/glsm/glsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/include/glsm/glsm.h -------------------------------------------------------------------------------- /deps/libretro-common/include/libco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/include/libco.h -------------------------------------------------------------------------------- /deps/libretro-common/include/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/include/libretro.h -------------------------------------------------------------------------------- /deps/libretro-common/include/lrc_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/include/lrc_hash.h -------------------------------------------------------------------------------- /deps/libretro-common/include/math/fxp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/include/math/fxp.h -------------------------------------------------------------------------------- /deps/libretro-common/include/memalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/include/memalign.h -------------------------------------------------------------------------------- /deps/libretro-common/include/memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/include/memmap.h -------------------------------------------------------------------------------- /deps/libretro-common/include/utils/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/include/utils/md5.h -------------------------------------------------------------------------------- /deps/libretro-common/include/vfs/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/include/vfs/vfs.h -------------------------------------------------------------------------------- /deps/libretro-common/libco/aarch64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/libco/aarch64.c -------------------------------------------------------------------------------- /deps/libretro-common/libco/amd64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/libco/amd64.c -------------------------------------------------------------------------------- /deps/libretro-common/libco/armeabi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/libco/armeabi.c -------------------------------------------------------------------------------- /deps/libretro-common/libco/fiber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/libco/fiber.c -------------------------------------------------------------------------------- /deps/libretro-common/libco/genode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/libco/genode.cpp -------------------------------------------------------------------------------- /deps/libretro-common/libco/libco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/libco/libco.c -------------------------------------------------------------------------------- /deps/libretro-common/libco/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/libco/ppc.c -------------------------------------------------------------------------------- /deps/libretro-common/libco/ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/libco/ps2.c -------------------------------------------------------------------------------- /deps/libretro-common/libco/ps3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/libco/ps3.S -------------------------------------------------------------------------------- /deps/libretro-common/libco/psp1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/libco/psp1.c -------------------------------------------------------------------------------- /deps/libretro-common/libco/psp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/libco/psp2.c -------------------------------------------------------------------------------- /deps/libretro-common/libco/scefiber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/libco/scefiber.c -------------------------------------------------------------------------------- /deps/libretro-common/libco/sjlj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/libco/sjlj.c -------------------------------------------------------------------------------- /deps/libretro-common/libco/ucontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/libco/ucontext.c -------------------------------------------------------------------------------- /deps/libretro-common/libco/x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/libco/x86.c -------------------------------------------------------------------------------- /deps/libretro-common/lists/dir_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/lists/dir_list.c -------------------------------------------------------------------------------- /deps/libretro-common/lists/file_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/lists/file_list.c -------------------------------------------------------------------------------- /deps/libretro-common/lists/linked_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/lists/linked_list.c -------------------------------------------------------------------------------- /deps/libretro-common/lists/nested_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/lists/nested_list.c -------------------------------------------------------------------------------- /deps/libretro-common/lists/string_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/lists/string_list.c -------------------------------------------------------------------------------- /deps/libretro-common/lists/vector_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/lists/vector_list.c -------------------------------------------------------------------------------- /deps/libretro-common/memmap/memalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/memmap/memalign.c -------------------------------------------------------------------------------- /deps/libretro-common/memmap/memmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/memmap/memmap.c -------------------------------------------------------------------------------- /deps/libretro-common/net/net_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/net/net_compat.c -------------------------------------------------------------------------------- /deps/libretro-common/net/net_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/net/net_http.c -------------------------------------------------------------------------------- /deps/libretro-common/net/net_ifinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/net/net_ifinfo.c -------------------------------------------------------------------------------- /deps/libretro-common/net/net_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/net/net_socket.c -------------------------------------------------------------------------------- /deps/libretro-common/queues/fifo_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/queues/fifo_queue.c -------------------------------------------------------------------------------- /deps/libretro-common/queues/task_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/queues/task_queue.c -------------------------------------------------------------------------------- /deps/libretro-common/rthreads/rthreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/rthreads/rthreads.c -------------------------------------------------------------------------------- /deps/libretro-common/rthreads/tpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/rthreads/tpool.c -------------------------------------------------------------------------------- /deps/libretro-common/samples/core_options/example_translation/translation scripts/intl/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /deps/libretro-common/string/stdstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/string/stdstring.c -------------------------------------------------------------------------------- /deps/libretro-common/time/rtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/time/rtime.c -------------------------------------------------------------------------------- /deps/libretro-common/utils/djb2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/utils/djb2.c -------------------------------------------------------------------------------- /deps/libretro-common/utils/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/utils/md5.c -------------------------------------------------------------------------------- /deps/libretro-common/utils/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/libretro-common/utils/sha1.c -------------------------------------------------------------------------------- /deps/lightning/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/.gitattributes -------------------------------------------------------------------------------- /deps/lightning/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/.gitignore -------------------------------------------------------------------------------- /deps/lightning/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/.gitmodules -------------------------------------------------------------------------------- /deps/lightning/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/.gitrepo -------------------------------------------------------------------------------- /deps/lightning/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/AUTHORS -------------------------------------------------------------------------------- /deps/lightning/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/COPYING -------------------------------------------------------------------------------- /deps/lightning/COPYING.DOC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/COPYING.DOC -------------------------------------------------------------------------------- /deps/lightning/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/COPYING.LESSER -------------------------------------------------------------------------------- /deps/lightning/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/ChangeLog -------------------------------------------------------------------------------- /deps/lightning/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/Makefile.am -------------------------------------------------------------------------------- /deps/lightning/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/NEWS -------------------------------------------------------------------------------- /deps/lightning/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/README -------------------------------------------------------------------------------- /deps/lightning/README-hacking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/README-hacking -------------------------------------------------------------------------------- /deps/lightning/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/THANKS -------------------------------------------------------------------------------- /deps/lightning/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/TODO -------------------------------------------------------------------------------- /deps/lightning/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/bootstrap -------------------------------------------------------------------------------- /deps/lightning/bootstrap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/bootstrap.conf -------------------------------------------------------------------------------- /deps/lightning/check/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/.gitignore -------------------------------------------------------------------------------- /deps/lightning/check/3to2.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/3to2.ok -------------------------------------------------------------------------------- /deps/lightning/check/3to2.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/3to2.tst -------------------------------------------------------------------------------- /deps/lightning/check/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/Makefile.am -------------------------------------------------------------------------------- /deps/lightning/check/add.ok: -------------------------------------------------------------------------------- 1 | 5 + 4 = 9 2 | -------------------------------------------------------------------------------- /deps/lightning/check/add.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/add.tst -------------------------------------------------------------------------------- /deps/lightning/check/align.ok: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /deps/lightning/check/align.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/align.tst -------------------------------------------------------------------------------- /deps/lightning/check/all.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/all.tst -------------------------------------------------------------------------------- /deps/lightning/check/allocai.ok: -------------------------------------------------------------------------------- 1 | received 7777 2 | succeeded 3 | -------------------------------------------------------------------------------- /deps/lightning/check/allocai.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/allocai.tst -------------------------------------------------------------------------------- /deps/lightning/check/allocar.ok: -------------------------------------------------------------------------------- 1 | 1 2 3 2 | 3 4 5 3 | 5 6 7 4 | 7 8 9 5 | -------------------------------------------------------------------------------- /deps/lightning/check/allocar.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/allocar.tst -------------------------------------------------------------------------------- /deps/lightning/check/alu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alu.inc -------------------------------------------------------------------------------- /deps/lightning/check/alu_add.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/alu_add.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alu_add.tst -------------------------------------------------------------------------------- /deps/lightning/check/alu_and.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/alu_and.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alu_and.tst -------------------------------------------------------------------------------- /deps/lightning/check/alu_com.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/alu_com.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alu_com.tst -------------------------------------------------------------------------------- /deps/lightning/check/alu_div.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/alu_div.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alu_div.tst -------------------------------------------------------------------------------- /deps/lightning/check/alu_hmul.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/alu_hmul.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alu_hmul.tst -------------------------------------------------------------------------------- /deps/lightning/check/alu_lsh.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/alu_lsh.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alu_lsh.tst -------------------------------------------------------------------------------- /deps/lightning/check/alu_mul.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/alu_mul.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alu_mul.tst -------------------------------------------------------------------------------- /deps/lightning/check/alu_neg.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/alu_neg.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alu_neg.tst -------------------------------------------------------------------------------- /deps/lightning/check/alu_or.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/alu_or.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alu_or.tst -------------------------------------------------------------------------------- /deps/lightning/check/alu_rem.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/alu_rem.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alu_rem.tst -------------------------------------------------------------------------------- /deps/lightning/check/alu_rot.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/alu_rot.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alu_rot.tst -------------------------------------------------------------------------------- /deps/lightning/check/alu_rsb.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/alu_rsb.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alu_rsb.tst -------------------------------------------------------------------------------- /deps/lightning/check/alu_rsh.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/alu_rsh.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alu_rsh.tst -------------------------------------------------------------------------------- /deps/lightning/check/alu_sub.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/alu_sub.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alu_sub.tst -------------------------------------------------------------------------------- /deps/lightning/check/alu_xor.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/alu_xor.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alu_xor.tst -------------------------------------------------------------------------------- /deps/lightning/check/alux_add.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/alux_add.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alux_add.tst -------------------------------------------------------------------------------- /deps/lightning/check/alux_sub.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/alux_sub.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/alux_sub.tst -------------------------------------------------------------------------------- /deps/lightning/check/bit.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/bit.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/bit.tst -------------------------------------------------------------------------------- /deps/lightning/check/bp.ok: -------------------------------------------------------------------------------- 1 | nfibs(32) = 2178309 2 | -------------------------------------------------------------------------------- /deps/lightning/check/bp.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/bp.tst -------------------------------------------------------------------------------- /deps/lightning/check/branch.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/branch.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/branch.tst -------------------------------------------------------------------------------- /deps/lightning/check/bswap.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/bswap.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/bswap.tst -------------------------------------------------------------------------------- /deps/lightning/check/call.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/call.ok -------------------------------------------------------------------------------- /deps/lightning/check/call.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/call.tst -------------------------------------------------------------------------------- /deps/lightning/check/callee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/callee.c -------------------------------------------------------------------------------- /deps/lightning/check/carg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/carg.c -------------------------------------------------------------------------------- /deps/lightning/check/carry.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/carry.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/carry.tst -------------------------------------------------------------------------------- /deps/lightning/check/catomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/catomic.c -------------------------------------------------------------------------------- /deps/lightning/check/catomic.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/catomic.ok -------------------------------------------------------------------------------- /deps/lightning/check/ccall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/ccall.c -------------------------------------------------------------------------------- /deps/lightning/check/check.arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/check.arm.sh -------------------------------------------------------------------------------- /deps/lightning/check/check.arm.swf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/check.arm.swf.sh -------------------------------------------------------------------------------- /deps/lightning/check/check.arm4.swf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/check.arm4.swf.sh -------------------------------------------------------------------------------- /deps/lightning/check/check.nodata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/check.nodata.sh -------------------------------------------------------------------------------- /deps/lightning/check/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/check.sh -------------------------------------------------------------------------------- /deps/lightning/check/check.swf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/check.swf.sh -------------------------------------------------------------------------------- /deps/lightning/check/check.x87.nodata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/check.x87.nodata.sh -------------------------------------------------------------------------------- /deps/lightning/check/check.x87.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/check.x87.sh -------------------------------------------------------------------------------- /deps/lightning/check/cldstxba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/cldstxba.c -------------------------------------------------------------------------------- /deps/lightning/check/clobber.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/clobber.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/clobber.tst -------------------------------------------------------------------------------- /deps/lightning/check/collatz.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/collatz.tst -------------------------------------------------------------------------------- /deps/lightning/check/ctramp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/ctramp.c -------------------------------------------------------------------------------- /deps/lightning/check/cva_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/cva_list.c -------------------------------------------------------------------------------- /deps/lightning/check/cvt.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/cvt.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/cvt.tst -------------------------------------------------------------------------------- /deps/lightning/check/divi.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/divi.ok -------------------------------------------------------------------------------- /deps/lightning/check/divi.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/divi.tst -------------------------------------------------------------------------------- /deps/lightning/check/ext.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/ext.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/ext.tst -------------------------------------------------------------------------------- /deps/lightning/check/factorial.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/factorial.tst -------------------------------------------------------------------------------- /deps/lightning/check/fib.ok: -------------------------------------------------------------------------------- 1 | nfibs(32) = 2178309 2 | -------------------------------------------------------------------------------- /deps/lightning/check/fib.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/fib.tst -------------------------------------------------------------------------------- /deps/lightning/check/float.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/float.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/float.tst -------------------------------------------------------------------------------- /deps/lightning/check/fma.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/fma.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/fma.tst -------------------------------------------------------------------------------- /deps/lightning/check/fop_abs.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/fop_abs.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/fop_abs.tst -------------------------------------------------------------------------------- /deps/lightning/check/fop_sqrt.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/fop_sqrt.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/fop_sqrt.tst -------------------------------------------------------------------------------- /deps/lightning/check/gen_cbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/gen_cbit.c -------------------------------------------------------------------------------- /deps/lightning/check/hton.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/hton.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/hton.tst -------------------------------------------------------------------------------- /deps/lightning/check/imm.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/imm.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/imm.tst -------------------------------------------------------------------------------- /deps/lightning/check/jmpr.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/jmpr.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/jmpr.tst -------------------------------------------------------------------------------- /deps/lightning/check/ldst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/ldst.inc -------------------------------------------------------------------------------- /deps/lightning/check/ldsti.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/ldsti.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/ldsti.tst -------------------------------------------------------------------------------- /deps/lightning/check/ldstr-c.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/ldstr-c.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/ldstr-c.tst -------------------------------------------------------------------------------- /deps/lightning/check/ldstr.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/ldstr.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/ldstr.tst -------------------------------------------------------------------------------- /deps/lightning/check/ldstxbai.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/ldstxbai.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/ldstxbai.tst -------------------------------------------------------------------------------- /deps/lightning/check/ldstxbar.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/ldstxbar.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/ldstxbar.tst -------------------------------------------------------------------------------- /deps/lightning/check/ldstxi-c.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/ldstxi-c.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/ldstxi-c.tst -------------------------------------------------------------------------------- /deps/lightning/check/ldstxi.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/ldstxi.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/ldstxi.tst -------------------------------------------------------------------------------- /deps/lightning/check/ldstxr-c.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/ldstxr-c.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/ldstxr-c.tst -------------------------------------------------------------------------------- /deps/lightning/check/ldstxr.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/ldstxr.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/ldstxr.tst -------------------------------------------------------------------------------- /deps/lightning/check/lightning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/lightning.c -------------------------------------------------------------------------------- /deps/lightning/check/live.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/live.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/live.tst -------------------------------------------------------------------------------- /deps/lightning/check/movzr.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/movzr.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/movzr.tst -------------------------------------------------------------------------------- /deps/lightning/check/nodata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/nodata.c -------------------------------------------------------------------------------- /deps/lightning/check/popcnt.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/popcnt.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/popcnt.tst -------------------------------------------------------------------------------- /deps/lightning/check/protect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/protect.c -------------------------------------------------------------------------------- /deps/lightning/check/put.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/put.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/put.tst -------------------------------------------------------------------------------- /deps/lightning/check/qalu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/qalu.inc -------------------------------------------------------------------------------- /deps/lightning/check/qalu_div.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/qalu_div.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/qalu_div.tst -------------------------------------------------------------------------------- /deps/lightning/check/qalu_mul.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/qalu_mul.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/qalu_mul.tst -------------------------------------------------------------------------------- /deps/lightning/check/qalu_shift.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/qalu_shift.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/qalu_shift.tst -------------------------------------------------------------------------------- /deps/lightning/check/range.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/range.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/range.tst -------------------------------------------------------------------------------- /deps/lightning/check/ranger.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/ranger.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/ranger.tst -------------------------------------------------------------------------------- /deps/lightning/check/rbit.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/rbit.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/rbit.tst -------------------------------------------------------------------------------- /deps/lightning/check/ret.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/ret.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/ret.tst -------------------------------------------------------------------------------- /deps/lightning/check/riprel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/riprel.c -------------------------------------------------------------------------------- /deps/lightning/check/riprel.ok: -------------------------------------------------------------------------------- 1 | c s i l 2 | C S I 3 | 1.0 2.0 4 | -------------------------------------------------------------------------------- /deps/lightning/check/rpn.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/rpn.ok -------------------------------------------------------------------------------- /deps/lightning/check/rpn.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/rpn.tst -------------------------------------------------------------------------------- /deps/lightning/check/run-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/run-test -------------------------------------------------------------------------------- /deps/lightning/check/self.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/self.c -------------------------------------------------------------------------------- /deps/lightning/check/setcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/setcode.c -------------------------------------------------------------------------------- /deps/lightning/check/skip.ok: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /deps/lightning/check/skip.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/skip.tst -------------------------------------------------------------------------------- /deps/lightning/check/stack.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/stack.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/stack.tst -------------------------------------------------------------------------------- /deps/lightning/check/tramp.ok: -------------------------------------------------------------------------------- 1 | xfibs(32) = 7049155 2 | -------------------------------------------------------------------------------- /deps/lightning/check/tramp.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/tramp.tst -------------------------------------------------------------------------------- /deps/lightning/check/unldst.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/unldst.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/unldst.tst -------------------------------------------------------------------------------- /deps/lightning/check/va_list.ok: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /deps/lightning/check/va_list.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/va_list.tst -------------------------------------------------------------------------------- /deps/lightning/check/varargs.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/varargs.ok -------------------------------------------------------------------------------- /deps/lightning/check/varargs.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/check/varargs.tst -------------------------------------------------------------------------------- /deps/lightning/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/configure.ac -------------------------------------------------------------------------------- /deps/lightning/doc/.cvsignore: -------------------------------------------------------------------------------- 1 | *.info* 2 | stamp-* 3 | version.texi 4 | -------------------------------------------------------------------------------- /deps/lightning/doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/doc/.gitignore -------------------------------------------------------------------------------- /deps/lightning/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/doc/Makefile.am -------------------------------------------------------------------------------- /deps/lightning/doc/body.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/doc/body.texi -------------------------------------------------------------------------------- /deps/lightning/doc/fact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/doc/fact.c -------------------------------------------------------------------------------- /deps/lightning/doc/ifib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/doc/ifib.c -------------------------------------------------------------------------------- /deps/lightning/doc/incr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/doc/incr.c -------------------------------------------------------------------------------- /deps/lightning/doc/lightning.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/doc/lightning.texi -------------------------------------------------------------------------------- /deps/lightning/doc/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/doc/printf.c -------------------------------------------------------------------------------- /deps/lightning/doc/rfib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/doc/rfib.c -------------------------------------------------------------------------------- /deps/lightning/doc/rpn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/doc/rpn.c -------------------------------------------------------------------------------- /deps/lightning/gnulib-lib/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile.am 2 | /dummy.c 3 | -------------------------------------------------------------------------------- /deps/lightning/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/include/Makefile.am -------------------------------------------------------------------------------- /deps/lightning/include/lightning.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/include/lightning.h.in -------------------------------------------------------------------------------- /deps/lightning/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/Makefile.am -------------------------------------------------------------------------------- /deps/lightning/lib/jit_aarch64-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_aarch64-cpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_aarch64-fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_aarch64-fpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_aarch64-sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_aarch64-sz.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_aarch64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_aarch64.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_alpha-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_alpha-cpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_alpha-fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_alpha-fpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_alpha-sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_alpha-sz.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_alpha.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_arm-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_arm-cpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_arm-swf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_arm-swf.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_arm-sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_arm-sz.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_arm-vfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_arm-vfp.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_arm.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_disasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_disasm.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_fallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_fallback.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_hppa-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_hppa-cpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_hppa-fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_hppa-fpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_hppa-sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_hppa-sz.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_hppa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_hppa.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_ia64-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_ia64-cpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_ia64-fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_ia64-fpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_ia64-sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_ia64-sz.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_ia64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_ia64.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_loongarch-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_loongarch-cpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_loongarch-fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_loongarch-fpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_loongarch-sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_loongarch-sz.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_loongarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_loongarch.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_memory.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_mips-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_mips-cpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_mips-fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_mips-fpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_mips-sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_mips-sz.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_mips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_mips.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_names.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_note.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_note.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_ppc-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_ppc-cpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_ppc-fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_ppc-fpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_ppc-sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_ppc-sz.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_ppc.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_print.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_rewind.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_riscv-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_riscv-cpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_riscv-fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_riscv-fpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_riscv-sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_riscv-sz.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_riscv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_riscv.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_s390-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_s390-cpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_s390-fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_s390-fpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_s390-sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_s390-sz.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_s390.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_s390.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_sh-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_sh-cpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_sh-fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_sh-fpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_sh-sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_sh-sz.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_sh.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_size.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_sparc-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_sparc-cpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_sparc-fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_sparc-fpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_sparc-sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_sparc-sz.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_sparc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_sparc.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_x86-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_x86-cpu.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_x86-sse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_x86-sse.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_x86-sz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_x86-sz.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_x86-x87.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_x86-x87.c -------------------------------------------------------------------------------- /deps/lightning/lib/jit_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/jit_x86.c -------------------------------------------------------------------------------- /deps/lightning/lib/lightning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lib/lightning.c -------------------------------------------------------------------------------- /deps/lightning/lightning.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/lightning.pc.in -------------------------------------------------------------------------------- /deps/lightning/m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/m4/.gitignore -------------------------------------------------------------------------------- /deps/lightning/m4/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/lightning/m4/gnulib-cache.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/m4/gnulib-cache.m4 -------------------------------------------------------------------------------- /deps/lightning/size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightning/size.c -------------------------------------------------------------------------------- /deps/lightrec/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so* 3 | -------------------------------------------------------------------------------- /deps/lightrec/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/.gitrepo -------------------------------------------------------------------------------- /deps/lightrec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/CMakeLists.txt -------------------------------------------------------------------------------- /deps/lightrec/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/COPYING -------------------------------------------------------------------------------- /deps/lightrec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/README.md -------------------------------------------------------------------------------- /deps/lightrec/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/arch.h -------------------------------------------------------------------------------- /deps/lightrec/blockcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/blockcache.c -------------------------------------------------------------------------------- /deps/lightrec/blockcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/blockcache.h -------------------------------------------------------------------------------- /deps/lightrec/constprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/constprop.c -------------------------------------------------------------------------------- /deps/lightrec/constprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/constprop.h -------------------------------------------------------------------------------- /deps/lightrec/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/debug.h -------------------------------------------------------------------------------- /deps/lightrec/disassembler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/disassembler.c -------------------------------------------------------------------------------- /deps/lightrec/disassembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/disassembler.h -------------------------------------------------------------------------------- /deps/lightrec/emitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/emitter.c -------------------------------------------------------------------------------- /deps/lightrec/emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/emitter.h -------------------------------------------------------------------------------- /deps/lightrec/interpreter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/interpreter.c -------------------------------------------------------------------------------- /deps/lightrec/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/interpreter.h -------------------------------------------------------------------------------- /deps/lightrec/lightning-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/lightning-wrapper.h -------------------------------------------------------------------------------- /deps/lightrec/lightrec-config.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/lightrec-config.h.cmakein -------------------------------------------------------------------------------- /deps/lightrec/lightrec-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/lightrec-private.h -------------------------------------------------------------------------------- /deps/lightrec/lightrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/lightrec.c -------------------------------------------------------------------------------- /deps/lightrec/lightrec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/lightrec.h -------------------------------------------------------------------------------- /deps/lightrec/memmanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/memmanager.c -------------------------------------------------------------------------------- /deps/lightrec/memmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/memmanager.h -------------------------------------------------------------------------------- /deps/lightrec/optimizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/optimizer.c -------------------------------------------------------------------------------- /deps/lightrec/optimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/optimizer.h -------------------------------------------------------------------------------- /deps/lightrec/reaper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/reaper.c -------------------------------------------------------------------------------- /deps/lightrec/reaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/reaper.h -------------------------------------------------------------------------------- /deps/lightrec/recompiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/recompiler.c -------------------------------------------------------------------------------- /deps/lightrec/recompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/recompiler.h -------------------------------------------------------------------------------- /deps/lightrec/regcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/regcache.c -------------------------------------------------------------------------------- /deps/lightrec/regcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/regcache.h -------------------------------------------------------------------------------- /deps/lightrec/slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/slist.h -------------------------------------------------------------------------------- /deps/lightrec/tlsf/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/tlsf/.gitrepo -------------------------------------------------------------------------------- /deps/lightrec/tlsf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/tlsf/README.md -------------------------------------------------------------------------------- /deps/lightrec/tlsf/tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/tlsf/tlsf.c -------------------------------------------------------------------------------- /deps/lightrec/tlsf/tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/lightrec/tlsf/tlsf.h -------------------------------------------------------------------------------- /deps/mman/.gitignore: -------------------------------------------------------------------------------- 1 | x64 2 | mman.VC.db -------------------------------------------------------------------------------- /deps/mman/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/mman/.gitrepo -------------------------------------------------------------------------------- /deps/mman/.vs/mman/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/mman/.vs/mman/v14/.suo -------------------------------------------------------------------------------- /deps/mman/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/mman/CMakeLists.txt -------------------------------------------------------------------------------- /deps/mman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/mman/Makefile -------------------------------------------------------------------------------- /deps/mman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/mman/README.md -------------------------------------------------------------------------------- /deps/mman/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/mman/UpgradeLog.htm -------------------------------------------------------------------------------- /deps/mman/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/mman/configure -------------------------------------------------------------------------------- /deps/mman/mman-win32.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/mman/mman-win32.pro -------------------------------------------------------------------------------- /deps/mman/mman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/mman/mman.c -------------------------------------------------------------------------------- /deps/mman/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/mman/mman.h -------------------------------------------------------------------------------- /deps/mman/mman.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/mman/mman.sln -------------------------------------------------------------------------------- /deps/mman/mman.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/mman/mman.vcxproj -------------------------------------------------------------------------------- /deps/mman/mman.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/mman/mman.vcxproj.filters -------------------------------------------------------------------------------- /deps/mman/mman.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/mman/mman.vcxproj.user -------------------------------------------------------------------------------- /deps/mman/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/deps/mman/test.c -------------------------------------------------------------------------------- /frontend/320240/caanoo.gpe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/320240/caanoo.gpe -------------------------------------------------------------------------------- /frontend/320240/haptic_s.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/320240/haptic_s.cfg -------------------------------------------------------------------------------- /frontend/320240/haptic_w.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/320240/haptic_w.cfg -------------------------------------------------------------------------------- /frontend/320240/pcsx26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/320240/pcsx26.png -------------------------------------------------------------------------------- /frontend/320240/pcsx_rearmed.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/320240/pcsx_rearmed.ini -------------------------------------------------------------------------------- /frontend/320240/pcsxb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/320240/pcsxb.png -------------------------------------------------------------------------------- /frontend/320240/pollux_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/320240/pollux_set.c -------------------------------------------------------------------------------- /frontend/320240/skin/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/320240/skin/background.png -------------------------------------------------------------------------------- /frontend/320240/skin/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/320240/skin/font.png -------------------------------------------------------------------------------- /frontend/320240/skin/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/320240/skin/readme.txt -------------------------------------------------------------------------------- /frontend/320240/skin/selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/320240/skin/selector.png -------------------------------------------------------------------------------- /frontend/320240/skin/skin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/320240/skin/skin.txt -------------------------------------------------------------------------------- /frontend/320240/ui_gp2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/320240/ui_gp2x.h -------------------------------------------------------------------------------- /frontend/320240/ui_miyoo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/320240/ui_miyoo.h -------------------------------------------------------------------------------- /frontend/3ds/3ds_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/3ds/3ds_utils.h -------------------------------------------------------------------------------- /frontend/3ds/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/3ds/pthread.h -------------------------------------------------------------------------------- /frontend/3ds/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/3ds/semaphore.h -------------------------------------------------------------------------------- /frontend/3ds/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/3ds/sys/mman.h -------------------------------------------------------------------------------- /frontend/3ds/utils.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/3ds/utils.S -------------------------------------------------------------------------------- /frontend/3ds/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/3ds/zconf.h -------------------------------------------------------------------------------- /frontend/3ds/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/3ds/zlib.h -------------------------------------------------------------------------------- /frontend/Cheat.h: -------------------------------------------------------------------------------- 1 | /* dummy */ 2 | -------------------------------------------------------------------------------- /frontend/blit320.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/blit320.h -------------------------------------------------------------------------------- /frontend/blit320.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/blit320.s -------------------------------------------------------------------------------- /frontend/cspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/cspace.c -------------------------------------------------------------------------------- /frontend/cspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/cspace.h -------------------------------------------------------------------------------- /frontend/cspace_arm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/cspace_arm.S -------------------------------------------------------------------------------- /frontend/cspace_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/cspace_neon.S -------------------------------------------------------------------------------- /frontend/in_tsbutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/in_tsbutton.c -------------------------------------------------------------------------------- /frontend/in_tsbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/in_tsbutton.h -------------------------------------------------------------------------------- /frontend/libretro-cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/libretro-cdrom.c -------------------------------------------------------------------------------- /frontend/libretro-cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/libretro-cdrom.h -------------------------------------------------------------------------------- /frontend/libretro-extern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/libretro-extern -------------------------------------------------------------------------------- /frontend/libretro-extern.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/libretro-extern.T -------------------------------------------------------------------------------- /frontend/libretro-rthreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/libretro-rthreads.c -------------------------------------------------------------------------------- /frontend/libretro-rthreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/libretro-rthreads.h -------------------------------------------------------------------------------- /frontend/libretro-version-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/libretro-version-script -------------------------------------------------------------------------------- /frontend/libretro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/libretro.c -------------------------------------------------------------------------------- /frontend/libretro_core_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/libretro_core_options.h -------------------------------------------------------------------------------- /frontend/libretro_core_options_intl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/libretro_core_options_intl.h -------------------------------------------------------------------------------- /frontend/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/main.c -------------------------------------------------------------------------------- /frontend/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/main.h -------------------------------------------------------------------------------- /frontend/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/menu.c -------------------------------------------------------------------------------- /frontend/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/menu.h -------------------------------------------------------------------------------- /frontend/nopic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/nopic.h -------------------------------------------------------------------------------- /frontend/pandora/pcsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/pandora/pcsx.png -------------------------------------------------------------------------------- /frontend/pandora/pcsx.pxml.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/pandora/pcsx.pxml.templ -------------------------------------------------------------------------------- /frontend/pandora/pcsx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/pandora/pcsx.sh -------------------------------------------------------------------------------- /frontend/pandora/picorestore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/pandora/picorestore.c -------------------------------------------------------------------------------- /frontend/pandora/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/pandora/readme.txt -------------------------------------------------------------------------------- /frontend/pandora/skin/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/pandora/skin/background.png -------------------------------------------------------------------------------- /frontend/pandora/skin/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/pandora/skin/font.png -------------------------------------------------------------------------------- /frontend/pandora/skin/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/pandora/skin/readme.txt -------------------------------------------------------------------------------- /frontend/pandora/skin/selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/pandora/skin/selector.png -------------------------------------------------------------------------------- /frontend/pandora/skin/skin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/pandora/skin/skin.txt -------------------------------------------------------------------------------- /frontend/pandora/ui_feat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/pandora/ui_feat.h -------------------------------------------------------------------------------- /frontend/pl_gun_ts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/pl_gun_ts.c -------------------------------------------------------------------------------- /frontend/pl_gun_ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/pl_gun_ts.h -------------------------------------------------------------------------------- /frontend/plat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/plat.h -------------------------------------------------------------------------------- /frontend/plat_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/plat_dummy.c -------------------------------------------------------------------------------- /frontend/plat_omap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/plat_omap.c -------------------------------------------------------------------------------- /frontend/plat_omap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/plat_omap.h -------------------------------------------------------------------------------- /frontend/plat_pandora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/plat_pandora.c -------------------------------------------------------------------------------- /frontend/plat_pollux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/plat_pollux.c -------------------------------------------------------------------------------- /frontend/plat_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/plat_sdl.c -------------------------------------------------------------------------------- /frontend/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/plugin.c -------------------------------------------------------------------------------- /frontend/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/plugin.h -------------------------------------------------------------------------------- /frontend/plugin_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/plugin_lib.c -------------------------------------------------------------------------------- /frontend/plugin_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/plugin_lib.h -------------------------------------------------------------------------------- /frontend/switch/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/switch/sys/mman.h -------------------------------------------------------------------------------- /frontend/switch/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/switch/zconf.h -------------------------------------------------------------------------------- /frontend/switch/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/switch/zlib.h -------------------------------------------------------------------------------- /frontend/vita/retro_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/vita/retro_inline.h -------------------------------------------------------------------------------- /frontend/vita/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/vita/sys/mman.h -------------------------------------------------------------------------------- /frontend/wiiu/coreinit/memorymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/frontend/wiiu/coreinit/memorymap.h -------------------------------------------------------------------------------- /include/arm_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/include/arm_features.h -------------------------------------------------------------------------------- /include/compiler_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/include/compiler_features.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/include/config.h -------------------------------------------------------------------------------- /include/libchdr/chdconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/include/libchdr/chdconfig.h -------------------------------------------------------------------------------- /include/lightning/lightning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/include/lightning/lightning.h -------------------------------------------------------------------------------- /include/lightrec/lightrec-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/include/lightrec/lightrec-config.h -------------------------------------------------------------------------------- /include/mman/sys/mman.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/pcnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/include/pcnt.h -------------------------------------------------------------------------------- /include/psemu_plugin_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/include/psemu_plugin_defs.h -------------------------------------------------------------------------------- /jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/jni/Android.mk -------------------------------------------------------------------------------- /jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all 2 | -------------------------------------------------------------------------------- /libpcsxcore/cdriso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/cdriso.c -------------------------------------------------------------------------------- /libpcsxcore/cdriso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/cdriso.h -------------------------------------------------------------------------------- /libpcsxcore/cdrom-async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/cdrom-async.c -------------------------------------------------------------------------------- /libpcsxcore/cdrom-async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/cdrom-async.h -------------------------------------------------------------------------------- /libpcsxcore/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/cdrom.c -------------------------------------------------------------------------------- /libpcsxcore/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/cdrom.h -------------------------------------------------------------------------------- /libpcsxcore/cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/cheat.c -------------------------------------------------------------------------------- /libpcsxcore/cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/cheat.h -------------------------------------------------------------------------------- /libpcsxcore/coff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/coff.h -------------------------------------------------------------------------------- /libpcsxcore/database.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/database.c -------------------------------------------------------------------------------- /libpcsxcore/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/database.h -------------------------------------------------------------------------------- /libpcsxcore/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/debug.c -------------------------------------------------------------------------------- /libpcsxcore/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/debug.h -------------------------------------------------------------------------------- /libpcsxcore/decode_xa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/decode_xa.c -------------------------------------------------------------------------------- /libpcsxcore/decode_xa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/decode_xa.h -------------------------------------------------------------------------------- /libpcsxcore/disr3000a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/disr3000a.c -------------------------------------------------------------------------------- /libpcsxcore/gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/gpu.c -------------------------------------------------------------------------------- /libpcsxcore/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/gpu.h -------------------------------------------------------------------------------- /libpcsxcore/gte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/gte.c -------------------------------------------------------------------------------- /libpcsxcore/gte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/gte.h -------------------------------------------------------------------------------- /libpcsxcore/gte_arm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/gte_arm.S -------------------------------------------------------------------------------- /libpcsxcore/gte_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/gte_arm.h -------------------------------------------------------------------------------- /libpcsxcore/gte_divider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/gte_divider.c -------------------------------------------------------------------------------- /libpcsxcore/gte_divider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/gte_divider.h -------------------------------------------------------------------------------- /libpcsxcore/gte_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/gte_neon.S -------------------------------------------------------------------------------- /libpcsxcore/gte_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/gte_neon.h -------------------------------------------------------------------------------- /libpcsxcore/gte_nf.c: -------------------------------------------------------------------------------- 1 | #define FLAGLESS 2 | #include "gte.c" 3 | -------------------------------------------------------------------------------- /libpcsxcore/lightrec/big_ass_debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/lightrec/big_ass_debugger.py -------------------------------------------------------------------------------- /libpcsxcore/lightrec/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/lightrec/mem.c -------------------------------------------------------------------------------- /libpcsxcore/lightrec/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/lightrec/mem.h -------------------------------------------------------------------------------- /libpcsxcore/lightrec/mem_wiiu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/lightrec/mem_wiiu.c -------------------------------------------------------------------------------- /libpcsxcore/lightrec/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/lightrec/plugin.c -------------------------------------------------------------------------------- /libpcsxcore/lightrec/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/lightrec/plugin.h -------------------------------------------------------------------------------- /libpcsxcore/lightrec/sysconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/lightrec/sysconf.c -------------------------------------------------------------------------------- /libpcsxcore/mdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/mdec.c -------------------------------------------------------------------------------- /libpcsxcore/mdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/mdec.h -------------------------------------------------------------------------------- /libpcsxcore/memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/memmap.h -------------------------------------------------------------------------------- /libpcsxcore/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/misc.c -------------------------------------------------------------------------------- /libpcsxcore/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/misc.h -------------------------------------------------------------------------------- /libpcsxcore/new_dynarec/assem_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/new_dynarec/assem_arm.c -------------------------------------------------------------------------------- /libpcsxcore/new_dynarec/assem_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/new_dynarec/assem_arm.h -------------------------------------------------------------------------------- /libpcsxcore/new_dynarec/assem_arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/new_dynarec/assem_arm64.c -------------------------------------------------------------------------------- /libpcsxcore/new_dynarec/assem_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/new_dynarec/assem_arm64.h -------------------------------------------------------------------------------- /libpcsxcore/new_dynarec/emu_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/new_dynarec/emu_if.c -------------------------------------------------------------------------------- /libpcsxcore/new_dynarec/emu_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/new_dynarec/emu_if.h -------------------------------------------------------------------------------- /libpcsxcore/new_dynarec/linkage_arm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/new_dynarec/linkage_arm.S -------------------------------------------------------------------------------- /libpcsxcore/new_dynarec/linkage_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/new_dynarec/linkage_arm64.S -------------------------------------------------------------------------------- /libpcsxcore/new_dynarec/new_dynarec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/new_dynarec/new_dynarec.c -------------------------------------------------------------------------------- /libpcsxcore/new_dynarec/new_dynarec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/new_dynarec/new_dynarec.h -------------------------------------------------------------------------------- /libpcsxcore/new_dynarec/pcsxmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/new_dynarec/pcsxmem.c -------------------------------------------------------------------------------- /libpcsxcore/new_dynarec/pcsxmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/new_dynarec/pcsxmem.h -------------------------------------------------------------------------------- /libpcsxcore/new_dynarec/pcsxmem_inline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/new_dynarec/pcsxmem_inline.c -------------------------------------------------------------------------------- /libpcsxcore/plugins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/plugins.c -------------------------------------------------------------------------------- /libpcsxcore/plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/plugins.h -------------------------------------------------------------------------------- /libpcsxcore/ppf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/ppf.c -------------------------------------------------------------------------------- /libpcsxcore/ppf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/ppf.h -------------------------------------------------------------------------------- /libpcsxcore/psxbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxbios.c -------------------------------------------------------------------------------- /libpcsxcore/psxbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxbios.h -------------------------------------------------------------------------------- /libpcsxcore/psxcommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxcommon.c -------------------------------------------------------------------------------- /libpcsxcore/psxcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxcommon.h -------------------------------------------------------------------------------- /libpcsxcore/psxcounters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxcounters.c -------------------------------------------------------------------------------- /libpcsxcore/psxcounters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxcounters.h -------------------------------------------------------------------------------- /libpcsxcore/psxdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxdma.c -------------------------------------------------------------------------------- /libpcsxcore/psxdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxdma.h -------------------------------------------------------------------------------- /libpcsxcore/psxevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxevents.c -------------------------------------------------------------------------------- /libpcsxcore/psxevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxevents.h -------------------------------------------------------------------------------- /libpcsxcore/psxhle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxhle.h -------------------------------------------------------------------------------- /libpcsxcore/psxhw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxhw.c -------------------------------------------------------------------------------- /libpcsxcore/psxhw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxhw.h -------------------------------------------------------------------------------- /libpcsxcore/psxinterpreter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxinterpreter.c -------------------------------------------------------------------------------- /libpcsxcore/psxinterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxinterpreter.h -------------------------------------------------------------------------------- /libpcsxcore/psxmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxmem.c -------------------------------------------------------------------------------- /libpcsxcore/psxmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxmem.h -------------------------------------------------------------------------------- /libpcsxcore/psxmem_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/psxmem_map.h -------------------------------------------------------------------------------- /libpcsxcore/r3000a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/r3000a.c -------------------------------------------------------------------------------- /libpcsxcore/r3000a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/r3000a.h -------------------------------------------------------------------------------- /libpcsxcore/sio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/sio.c -------------------------------------------------------------------------------- /libpcsxcore/sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/sio.h -------------------------------------------------------------------------------- /libpcsxcore/sjisfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/sjisfont.h -------------------------------------------------------------------------------- /libpcsxcore/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/socket.c -------------------------------------------------------------------------------- /libpcsxcore/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/socket.h -------------------------------------------------------------------------------- /libpcsxcore/spu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/spu.c -------------------------------------------------------------------------------- /libpcsxcore/spu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/spu.h -------------------------------------------------------------------------------- /libpcsxcore/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/libpcsxcore/system.h -------------------------------------------------------------------------------- /maemo/hildon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/maemo/hildon.c -------------------------------------------------------------------------------- /maemo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/maemo/main.c -------------------------------------------------------------------------------- /miyoo/pkg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/miyoo/pkg.cfg -------------------------------------------------------------------------------- /plugins/cdrcimg/cdrcimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/cdrcimg/cdrcimg.c -------------------------------------------------------------------------------- /plugins/cdrcimg/cdrcimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/cdrcimg/cdrcimg.h -------------------------------------------------------------------------------- /plugins/dfsound/Makefile.c64p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/Makefile.c64p -------------------------------------------------------------------------------- /plugins/dfsound/adsr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/adsr.c -------------------------------------------------------------------------------- /plugins/dfsound/alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/alsa.c -------------------------------------------------------------------------------- /plugins/dfsound/arm_utils.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/arm_utils.S -------------------------------------------------------------------------------- /plugins/dfsound/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/dma.c -------------------------------------------------------------------------------- /plugins/dfsound/externals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/externals.h -------------------------------------------------------------------------------- /plugins/dfsound/freeze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/freeze.c -------------------------------------------------------------------------------- /plugins/dfsound/gauss_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/gauss_i.h -------------------------------------------------------------------------------- /plugins/dfsound/nullsnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/nullsnd.c -------------------------------------------------------------------------------- /plugins/dfsound/oss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/oss.c -------------------------------------------------------------------------------- /plugins/dfsound/out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/out.c -------------------------------------------------------------------------------- /plugins/dfsound/out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/out.h -------------------------------------------------------------------------------- /plugins/dfsound/psemuxa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/psemuxa.h -------------------------------------------------------------------------------- /plugins/dfsound/pulseaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/pulseaudio.c -------------------------------------------------------------------------------- /plugins/dfsound/registers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/registers.c -------------------------------------------------------------------------------- /plugins/dfsound/registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/registers.h -------------------------------------------------------------------------------- /plugins/dfsound/reverb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/reverb.c -------------------------------------------------------------------------------- /plugins/dfsound/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/sdl.c -------------------------------------------------------------------------------- /plugins/dfsound/spu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/spu.c -------------------------------------------------------------------------------- /plugins/dfsound/spu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/spu.h -------------------------------------------------------------------------------- /plugins/dfsound/spu_c64x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/spu_c64x.c -------------------------------------------------------------------------------- /plugins/dfsound/spu_c64x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/spu_c64x.h -------------------------------------------------------------------------------- /plugins/dfsound/spu_c64x_dspcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/spu_c64x_dspcode.c -------------------------------------------------------------------------------- /plugins/dfsound/spu_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/spu_config.h -------------------------------------------------------------------------------- /plugins/dfsound/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/stdafx.h -------------------------------------------------------------------------------- /plugins/dfsound/xa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfsound/xa.c -------------------------------------------------------------------------------- /plugins/dfxvideo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfxvideo/Makefile -------------------------------------------------------------------------------- /plugins/dfxvideo/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfxvideo/draw.c -------------------------------------------------------------------------------- /plugins/dfxvideo/draw_pl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfxvideo/draw_pl.c -------------------------------------------------------------------------------- /plugins/dfxvideo/fps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfxvideo/fps.c -------------------------------------------------------------------------------- /plugins/dfxvideo/gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfxvideo/gpu.c -------------------------------------------------------------------------------- /plugins/dfxvideo/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfxvideo/gpu.h -------------------------------------------------------------------------------- /plugins/dfxvideo/gpulib_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfxvideo/gpulib_if.c -------------------------------------------------------------------------------- /plugins/dfxvideo/prim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfxvideo/prim.c -------------------------------------------------------------------------------- /plugins/dfxvideo/soft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/dfxvideo/soft.c -------------------------------------------------------------------------------- /plugins/gpu-gles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu-gles/Makefile -------------------------------------------------------------------------------- /plugins/gpu-gles/gpuDraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu-gles/gpuDraw.c -------------------------------------------------------------------------------- /plugins/gpu-gles/gpuDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu-gles/gpuDraw.h -------------------------------------------------------------------------------- /plugins/gpu-gles/gpuExternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu-gles/gpuExternals.h -------------------------------------------------------------------------------- /plugins/gpu-gles/gpuFps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu-gles/gpuFps.c -------------------------------------------------------------------------------- /plugins/gpu-gles/gpuFps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu-gles/gpuFps.h -------------------------------------------------------------------------------- /plugins/gpu-gles/gpuPlugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu-gles/gpuPlugin.c -------------------------------------------------------------------------------- /plugins/gpu-gles/gpuPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu-gles/gpuPlugin.h -------------------------------------------------------------------------------- /plugins/gpu-gles/gpuPrim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu-gles/gpuPrim.c -------------------------------------------------------------------------------- /plugins/gpu-gles/gpuPrim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu-gles/gpuPrim.h -------------------------------------------------------------------------------- /plugins/gpu-gles/gpuStdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu-gles/gpuStdafx.h -------------------------------------------------------------------------------- /plugins/gpu-gles/gpuTexture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu-gles/gpuTexture.c -------------------------------------------------------------------------------- /plugins/gpu-gles/gpuTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu-gles/gpuTexture.h -------------------------------------------------------------------------------- /plugins/gpu-gles/gpulib_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu-gles/gpulib_if.c -------------------------------------------------------------------------------- /plugins/gpu-gles/hud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu-gles/hud.c -------------------------------------------------------------------------------- /plugins/gpu_neon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_neon/Makefile -------------------------------------------------------------------------------- /plugins/gpu_neon/psx_gpu/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_neon/psx_gpu/common.h -------------------------------------------------------------------------------- /plugins/gpu_neon/psx_gpu/psx_gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_neon/psx_gpu/psx_gpu.c -------------------------------------------------------------------------------- /plugins/gpu_neon/psx_gpu/psx_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_neon/psx_gpu/psx_gpu.h -------------------------------------------------------------------------------- /plugins/gpu_neon/psx_gpu/psx_gpu_4x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_neon/psx_gpu/psx_gpu_4x.c -------------------------------------------------------------------------------- /plugins/gpu_neon/psx_gpu/psx_gpu_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_neon/psx_gpu/psx_gpu_main.c -------------------------------------------------------------------------------- /plugins/gpu_neon/psx_gpu/psx_gpu_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_neon/psx_gpu/psx_gpu_parse.c -------------------------------------------------------------------------------- /plugins/gpu_neon/psx_gpu/psx_gpu_simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_neon/psx_gpu/psx_gpu_simd.c -------------------------------------------------------------------------------- /plugins/gpu_neon/psx_gpu/psx_gpu_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_neon/psx_gpu/psx_gpu_simd.h -------------------------------------------------------------------------------- /plugins/gpu_neon/psx_gpu/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_neon/psx_gpu/tests/Makefile -------------------------------------------------------------------------------- /plugins/gpu_neon/psx_gpu/vector_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_neon/psx_gpu/vector_ops.h -------------------------------------------------------------------------------- /plugins/gpu_neon/psx_gpu/vector_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_neon/psx_gpu/vector_types.h -------------------------------------------------------------------------------- /plugins/gpu_neon/psx_gpu_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_neon/psx_gpu_if.c -------------------------------------------------------------------------------- /plugins/gpu_unai/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/Makefile -------------------------------------------------------------------------------- /plugins/gpu_unai/README_senquack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/README_senquack.txt -------------------------------------------------------------------------------- /plugins/gpu_unai/debug.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu.cpp -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu.h -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu_arm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu_arm.S -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu_arm.h -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu_blit.h -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu_command.h -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu_fixedpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu_fixedpoint.h -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu_inner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu_inner.h -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu_inner_blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu_inner_blend.h -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu_inner_blend_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu_inner_blend_arm.h -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu_inner_blend_arm5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu_inner_blend_arm5.h -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu_inner_blend_arm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu_inner_blend_arm7.h -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu_inner_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu_inner_light.h -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu_inner_light_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu_inner_light_arm.h -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu_raster_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu_raster_image.h -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu_raster_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu_raster_line.h -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu_raster_polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu_raster_polygon.h -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu_raster_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu_raster_sprite.h -------------------------------------------------------------------------------- /plugins/gpu_unai/gpu_unai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpu_unai.h -------------------------------------------------------------------------------- /plugins/gpu_unai/gpulib_if.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/gpulib_if.cpp -------------------------------------------------------------------------------- /plugins/gpu_unai/old/debug.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/gpu_unai/old/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/old/gpu.cpp -------------------------------------------------------------------------------- /plugins/gpu_unai/old/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/old/gpu.h -------------------------------------------------------------------------------- /plugins/gpu_unai/old/gpu_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/old/gpu_blit.h -------------------------------------------------------------------------------- /plugins/gpu_unai/old/gpu_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/old/gpu_command.h -------------------------------------------------------------------------------- /plugins/gpu_unai/old/gpu_fixedpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/old/gpu_fixedpoint.h -------------------------------------------------------------------------------- /plugins/gpu_unai/old/gpu_inner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/old/gpu_inner.h -------------------------------------------------------------------------------- /plugins/gpu_unai/old/gpu_inner_blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/old/gpu_inner_blend.h -------------------------------------------------------------------------------- /plugins/gpu_unai/old/gpu_inner_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/old/gpu_inner_light.h -------------------------------------------------------------------------------- /plugins/gpu_unai/old/gpu_raster_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/old/gpu_raster_image.h -------------------------------------------------------------------------------- /plugins/gpu_unai/old/gpu_raster_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/old/gpu_raster_line.h -------------------------------------------------------------------------------- /plugins/gpu_unai/old/gpu_raster_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/old/gpu_raster_sprite.h -------------------------------------------------------------------------------- /plugins/gpu_unai/old/if.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/old/if.cpp -------------------------------------------------------------------------------- /plugins/gpu_unai/old/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/old/if.h -------------------------------------------------------------------------------- /plugins/gpu_unai/old/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/old/port.h -------------------------------------------------------------------------------- /plugins/gpu_unai/old/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/old/profiler.h -------------------------------------------------------------------------------- /plugins/gpu_unai/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/port.h -------------------------------------------------------------------------------- /plugins/gpu_unai/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpu_unai/profiler.h -------------------------------------------------------------------------------- /plugins/gpulib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpulib/Makefile -------------------------------------------------------------------------------- /plugins/gpulib/Makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpulib/Makefile.test -------------------------------------------------------------------------------- /plugins/gpulib/gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpulib/gpu.c -------------------------------------------------------------------------------- /plugins/gpulib/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpulib/gpu.h -------------------------------------------------------------------------------- /plugins/gpulib/gpu_timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpulib/gpu_timing.h -------------------------------------------------------------------------------- /plugins/gpulib/gpulib.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpulib/gpulib.mak -------------------------------------------------------------------------------- /plugins/gpulib/gpulib_thread_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpulib/gpulib_thread_if.c -------------------------------------------------------------------------------- /plugins/gpulib/gpulib_thread_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpulib/gpulib_thread_if.h -------------------------------------------------------------------------------- /plugins/gpulib/prim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpulib/prim.c -------------------------------------------------------------------------------- /plugins/gpulib/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpulib/test.c -------------------------------------------------------------------------------- /plugins/gpulib/vout_pl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpulib/vout_pl.c -------------------------------------------------------------------------------- /plugins/gpulib/vout_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/gpulib/vout_sdl.c -------------------------------------------------------------------------------- /plugins/spunull/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/spunull/Makefile -------------------------------------------------------------------------------- /plugins/spunull/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/spunull/register.h -------------------------------------------------------------------------------- /plugins/spunull/spunull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/spunull/spunull.c -------------------------------------------------------------------------------- /plugins/spunull/xa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/plugins/spunull/xa.h -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/gas-preprocessor.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/tools/gas-preprocessor.pl -------------------------------------------------------------------------------- /tools/psxcimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/pcsx_rearmed/HEAD/tools/psxcimg.c --------------------------------------------------------------------------------