This commit is contained in:
Bella 2025-01-30 16:45:30 +13:00
parent 1d16bf0c94
commit 39cc5b2a56
No known key found for this signature in database
GPG key ID: 725FECA79EF56B97
4517 changed files with 1061 additions and 1360 deletions

0
CONTRIBUTING.md Normal file → Executable file
View file

0
Compile.md Normal file → Executable file
View file

0
Directory.Packages.props Normal file → Executable file
View file

0
LICENSE.txt Normal file → Executable file
View file

View file

@ -1,46 +0,0 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>get-task-allow</key>
<true/>
<key>com.apple.developer.kernel.increased-memory-limit</key>
<true/>
<key>com.apple.developer.kernel.extended-virtual-addressing</key>
<true/>
<key>com.apple.private.iokit.IOServiceSetAuthorizationID</key>
<true/>
<key>com.apple.security.exception.iokit-user-client-class</key>
<array>
<string>AGXCommandQueue</string>
<string>AGXDevice</string>
<string>AGXDeviceUserClient</string>
<string>AGXSharedUserClient</string>
<string>AppleUSBHostDeviceUserClient</string>
<string>AppleUSBHostInterfaceUserClient</string>
<string>IOSurfaceRootUserClient</string>
<string>IOAccelContext</string>
<string>IOAccelContext2</string>
<string>IOAccelDevice</string>
<string>IOAccelDevice2</string>
<string>IOAccelSharedUserClient</string>
<string>IOAccelSharedUserClient2</string>
<string>IOAccelSubmitter2</string>
</array>
<key>com.apple.system.diagnostics.iokit-properties</key>
<true/>
<key>com.apple.vm.device-access</key>
<true/>
<key>com.apple.private.hypervisor</key>
<true/>
<key>com.apple.private.memorystatus</key>
<true/>
<key>com.apple.private.security.no-sandbox</key>
<true/>
<key>com.apple.private.security.storage.AppDataContainers</key>
<true/>
<key>com.apple.private.security.storage.MobileDocuments</key>
<true/>
<key>platform-application</key>
<true/>
</dict>
</plist>

0
README.md Normal file → Executable file
View file

0
Ryujinx.sln Normal file → Executable file
View file

0
Ryujinx.sln.DotSettings Normal file → Executable file
View file

0
crowdin.yml Normal file → Executable file
View file

0
distribution/legal/THIRDPARTY.md Normal file → Executable file
View file

0
distribution/linux/Ryujinx.desktop Normal file → Executable file
View file

0
distribution/linux/Ryujinx.sh Normal file → Executable file
View file

0
distribution/linux/mime/Ryujinx.xml Normal file → Executable file
View file

0
distribution/linux/shortcut-template.desktop Normal file → Executable file
View file

0
distribution/macos/Info.plist Normal file → Executable file
View file

0
distribution/macos/Ryujinx.icns Normal file → Executable file
View file

0
distribution/macos/bundle_fix_up.py Normal file → Executable file
View file

0
distribution/macos/construct_universal_dylib.py Normal file → Executable file
View file

0
distribution/macos/entitlements.xml Normal file → Executable file
View file

0
distribution/macos/shortcut-template.plist Normal file → Executable file
View file

0
distribution/misc/Logo.svg Normal file → Executable file
View file

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Before After
Before After

0
distribution/misc/add_tar_exec.py Normal file → Executable file
View file

0
distribution/windows/alsoft.ini Normal file → Executable file
View file

0
docs/README.md Normal file → Executable file
View file

0
docs/coding-guidelines/coding-style.md Normal file → Executable file
View file

0
docs/workflow/pr-guide.md Normal file → Executable file
View file

0
global.json Normal file → Executable file
View file

0
nuget.config Normal file → Executable file
View file

0
src/ARMeilleure/ARMeilleure.csproj Normal file → Executable file
View file

0
src/ARMeilleure/Allocators.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Arm64/Arm64Optimizer.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Arm64/ArmCondition.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Arm64/ArmExtensionType.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Arm64/ArmShiftType.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Arm64/Assembler.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Arm64/CallingConvention.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Arm64/CodeGenCommon.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Arm64/CodeGenContext.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Arm64/CodeGenerator.cs Normal file → Executable file
View file

View file

0
src/ARMeilleure/CodeGen/Arm64/HardwareCapabilities.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Arm64/IntrinsicInfo.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Arm64/IntrinsicTable.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Arm64/IntrinsicType.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Arm64/PreAllocator.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/CompiledFunction.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Linking/RelocEntry.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Linking/RelocInfo.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Linking/Symbol.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Linking/SymbolType.cs Normal file → Executable file
View file

View file

View file

0
src/ARMeilleure/CodeGen/Optimizations/Optimizer.cs Normal file → Executable file
View file

View file

0
src/ARMeilleure/CodeGen/Optimizations/TailMerge.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/PreAllocatorCommon.cs Normal file → Executable file
View file

View file

View file

View file

View file

View file

View file

View file

View file

View file

View file

0
src/ARMeilleure/CodeGen/RegisterAllocators/UseList.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Unwinding/UnwindInfo.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Unwinding/UnwindPseudoOp.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/Unwinding/UnwindPushEntry.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/Assembler.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/AssemblerTable.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/CallConvName.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/CallingConvention.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/CodeGenCommon.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/CodeGenContext.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/CodeGenerator.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/HardwareCapabilities.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/IntrinsicInfo.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/IntrinsicTable.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/IntrinsicType.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/Mxcsr.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/PreAllocator.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/PreAllocatorSystemV.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/PreAllocatorWindows.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/X86Condition.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/X86Instruction.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/X86Optimizer.cs Normal file → Executable file
View file

0
src/ARMeilleure/CodeGen/X86/X86Register.cs Normal file → Executable file
View file

0
src/ARMeilleure/Common/AddressTable.cs Normal file → Executable file
View file

0
src/ARMeilleure/Common/Allocator.cs Normal file → Executable file
View file

0
src/ARMeilleure/Common/ArenaAllocator.cs Normal file → Executable file
View file

0
src/ARMeilleure/Common/BitMap.cs Normal file → Executable file
View file

0
src/ARMeilleure/Common/BitUtils.cs Normal file → Executable file
View file

0
src/ARMeilleure/Common/Counter.cs Normal file → Executable file
View file

0
src/ARMeilleure/Common/EntryTable.cs Normal file → Executable file
View file

0
src/ARMeilleure/Common/EnumUtils.cs Normal file → Executable file
View file

0
src/ARMeilleure/Common/NativeAllocator.cs Normal file → Executable file
View file

0
src/ARMeilleure/Decoders/Block.cs Normal file → Executable file
View file

0
src/ARMeilleure/Decoders/Condition.cs Normal file → Executable file
View file

Some files were not shown because too many files have changed in this diff Show more