22
33Arguments which are appended to executable to produce final shortcut. Most of the time you will want to set it using provided parser variables.
44
5- ## Examples
5+ ## Examples By System
66
77### RetroArch
88
99```
1010-L "cores${/}YOUR_CORE.dll" "${filePath}"
1111```
1212
13+ ### Cemu (WiiU)
14+
15+ ```
16+ -f -g "${filePath}"
17+ ```
18+
1319### Dolphin Emu (Gamecube and Wii)
1420
1521```
16- --batch --exec "${filePath}"
22+ --batch --exec --confirm=false "${filePath}"
1723```
1824
19- ### Cemu (WiiU )
25+ ### Project64 2.3+ (N64 )
2026
2127```
22- -f -g "${filePath}"
28+ "${filePath}"
29+ ```
30+
31+ ### Mupen64+ (N64)
32+
33+ ```
34+ --fullscreen "${filePath}"
35+ ```
36+
37+ ### DeSmuME (Nintendo DS)
38+
39+ ```
40+ "${filePath}"
41+ ``
42+
43+ ### mGBA (Gameboy, Gameboy Color, and Gameboy Advance)
44+
45+ ```
46+ -f "${filePath}"
47+ ```
48+
49+ ### Nestopia (NES/Famicom)
50+
51+ ```
52+ "${filePath}" -video fullscreen bpp : 16 -video fullscreen width : 1024 -video fullscreen height : 768 -preferences fullscreen on start : yes -view size fullscreen : stretched
2353```
2454
2555### nullDC (Sega Dreamcast)
@@ -28,28 +58,40 @@ Arguments which are appended to executable to produce final shortcut. Most of th
2858-config nullDC_GUI: Fullscreen =1 -config ImageReader: DefaultImage ="${filePath}"
2959```
3060
61+ ### Kega Fusion (Sega Genesis and Sega 32X)
62+
63+ ```
64+ "${filePath}" -gen -auto -fullscreen
65+ ```
66+
67+ ### RPCS3 (Sony Playstation 3)
68+
69+ ```
70+ "${filePath}"
71+ ```
72+
3173### PCSX2 (Sony Playstation 2)
3274
3375```
3476--fullscreen --nogui "${filePath}"
3577```
3678
37- ### Kega Fusion (Sega Genesis and Sega 32X )
79+ ### PCSX-R (Sony Playstation 1 )
3880
3981```
40- "${filePath}" -gen -auto -fullscreen
82+ -nogui -cdfile "${filePath}"
4183```
4284
43- ### Project64 2.3+ (N64 )
85+ ### ePSXe (Sony Playstation 1 )
4486
4587```
46- "${filePath}"
88+ -f -nogui -loadbin "${filePath}"
4789```
4890
49- ### Nestopia (NES/Famicom )
91+ ### PPSSPP (Sony Playstation Portable )
5092
5193```
52- "${filePath}" -video fullscreen bpp : 16 -video fullscreen width : 1024 -video fullscreen height : 768 -preferences fullscreen on start : yes -view size fullscreen : stretched
94+ "${filePath}"
5395```
5496
5597## What does "Append arguments to executable" do?
0 commit comments