Wiki/wiki-rtd/docs/wiki_archive/ryujinx/ryujinx-guide.md

89 lines
2.8 KiB
Markdown
Raw Normal View History

2024-01-18 13:09:58 +00:00
# Ryujinx - General Guide
2024-01-06 08:25:02 +00:00
2024-01-18 13:09:58 +00:00
<img src="../../../wiki_images/logos/ryujinx-logo.svg" width="150">
2024-01-06 08:25:02 +00:00
2025-01-23 08:36:44 +00:00
**Note: Archived Emulator**
2025-01-06 13:59:31 +00:00
2025-01-23 08:36:44 +00:00
Ryujinx was a Switch emulator and was removed as part of the `0.9.0b` update.
2025-01-06 13:59:31 +00:00
2025-01-23 08:36:44 +00:00
The last version that shipped with Ryujinx was `0.8.4b`.
2025-01-06 13:59:31 +00:00
2024-01-06 08:25:02 +00:00
## Where to put the games?
2024-01-18 13:09:58 +00:00
2025-01-06 13:59:31 +00:00
Switch games should be put into the `retrodeck/roms/switch/` directory.
2024-04-23 05:17:34 +00:00
2025-01-06 13:59:31 +00:00
## What file formats are supported?
```
.xci
.nsp
.nca
.nso
.nro
```
2025-01-06 14:00:31 +00:00
## Does Ryujinx require BIOS or Firmware?
2025-01-06 13:59:31 +00:00
2025-01-06 14:00:31 +00:00
Yes, `prod.keys` `title.keys` and `.nca` files.
2025-01-06 13:59:31 +00:00
**Notice: Do not mix and match versions firmware and keys**
2024-02-28 06:54:12 +00:00
2025-01-06 13:59:31 +00:00
The installed firmware must have have the same version at your keys and .nca files, you can't mix and match as that can lead to crashes and black screens!
You need to make sure that the keys and firmware are from the same version.
Generally do not install the firmware from games. Instead provide your own firmware and keys from your own device.
### Where to put the firmware files?
2024-02-28 06:54:12 +00:00
2024-03-26 05:43:18 +00:00
Needs the key files `prod.keys`, `title.keys` and the firmware files in the following directories:
2024-02-28 06:54:12 +00:00
**Keys:** `~/retrodeck/bios/switch/keys`
**Firmware:** `~/retrodeck/bios/switch/registered`
The directory tree should look like this example:
```
2025-01-14 11:52:08 +00:00
retrodeck/bios/switch
2024-02-28 06:54:12 +00:00
├── keys
│   ├── prod.keys
│   └── title.keys
└── registered
2024-03-26 05:43:18 +00:00
└── XXX amount of .nca files goes here
2024-03-26 14:21:20 +00:00
```
2024-04-18 05:55:55 +00:00
2025-01-14 11:52:08 +00:00
### How-to - Install the firmware
2024-04-23 05:17:34 +00:00
2024-04-23 15:15:13 +00:00
Ryujinx also requires the firmware to be installed via `RetroDECK Configurator` -> `Open Emulator` -> `Ryujinx` -> `Tools` -> `Install Firmware` -> `Install from XCI or ZIP`
2024-04-23 05:17:34 +00:00
2025-01-14 11:52:08 +00:00
## Folder structure
2024-04-23 15:15:13 +00:00
2025-01-14 11:52:08 +00:00
| Type | Folder | Comment |
| :---: | :---: | :---: |
| Saves Folder |`retrodeck/saves/switch/ryujinx/` | Contains the `nand`, `sdcard` folders |
| Config Folder |`~/.var/app/net.retrodeck.retrodeck/config/Ryujinx/` | Contains most of Ryujinx internal folders|
| BIOS Folder | `retrodeck/bios/switch/` | Contains the `firmware`, `keys` folders |
2025-01-14 12:30:58 +00:00
| Mods Folder | `~/.var/app/net.retrodeck.retrodeck/config/Ryujinx/mods/` | |
2024-04-23 15:15:13 +00:00
2025-01-14 11:52:08 +00:00
## Guide - Adding game patches
2024-04-23 05:17:34 +00:00
From within Ryujinx `Right Click` on a game and select `Manage Title Updates` and then navigate to the update files you would like to install and press `Save`.
2025-01-14 11:52:08 +00:00
## Guide - Adding DLC
2024-04-23 05:17:34 +00:00
From within Ryujinx `Right Click` on a game and select `Manage DLC` and then navigate to the update files you would like to install and press `Save`.
2024-04-18 05:55:55 +00:00
2025-01-14 11:52:08 +00:00
## Guide - Adding mods
2024-08-27 10:31:16 +00:00
From within Ryujinx `Right Click` on a game and select `Open Mods Folder` and put the mods you need in it's correct folder then go back to enable via the interface.
The current mapping for the mods folder is:
`~/.var/app/net.retrodeck.retrodeck/config/Ryujinx/mods/`
2024-05-11 07:21:19 +00:00