Editing PS2 Emulation

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:


= Description =
== Description ==


<pre>PlayStation 2 emulation on the PlayStation 4 is handled with little difference to the PlayStation 3,
PlayStation 2 emulation on PS4 is handled slightly differently comparing to PS3. Each PS2 game PS4 package file (.pkg) include emulator itself, so there is no included emulator in PS4 firmware. This slightly complicating providing compatibility list as emulators include some per title patches, and default settings. Currently most used emulators came from Rogue Galaxy, and Jak games. Next difference is that BIOS in external file is included in .pkg, anyway it is exactly the same BIOS used in ps2_netemu. Another important difference is the lack of encryption mechanism for PS2 game disc image file: this time it is just a plain ISO file. Memory card is also decrypted, but emulator check crc of some of it regions to ensure that fresh card is not modified. PS2 Emulator supports LUA scripting by "Lua Bridge", is powerful interface that provide many possibilities to improve compatibility.
as some issues on the PlayStation 3 were not fixed on the PlayStation 4's emulator. As a result, the PS4 inherited some of PS3's emulation glitches, along with introducing new ones.
This is first time when sony need care about floats in their emulator. This is resolved by clamping, and/or converting floats to double precision. Emulator use openCL for GS, and probably other components.
That came as a result of PS4's weakness towards emulation, which likely pressured Sony into trading accuracy for performance.


Each PS2ONPS4 package file (.pkg) includes the emulator itself. The ps4 does not have a native built-in emulator in its firmware, but it does a few PS2 emulator specific features, like the functions sceLncUtilIsPs2Emu, sceShellCoreUtilGetImposeMenuFlagForPs2Emu, sceSystemServiceAddLocalProcessForPs2Emu, and sceSystemServiceShowImposeMenuForPs2Emu.
== Emulator Configuration ==


Emulators are programmed to be accurate for the games they were designed to emulate. In turn, this makes accurate emulation challenging, as emulators include per title patches and different default settings. The Playstation 2 hardware is a complex system to emulate; any small change in configuration can make or break a game.
=== Files ===
Currently the most commonly used emulator is Jakv2 as it is the most compatible one out there. When game crashes are concerned, RECVX is typically used, whereas for VU accuracy it is roguev1.


The PS2 BIOS is included in the game's pkg, the same one used on the ps2_netemu. The lack of encryption mechanism for PS2 game disc image file is also important. This time it is a plain ISO file, but the emulator still supports LIMG sector that allows the usage of non-2048 sector size discs. Moreover, memory cards are also decrypted, but the emulator checks the CRC of some of the regions to ensure that the memory card was not modified. This PS2 Emulator also supports LUA scripting by "Lua Bridge", which is a powerful interface that may prove exceptionally handy in fixing games.
Emulator configuration is probably handled by 4 files:
 
This is first time that Sony has ever cared about floats in its emulators. Compared to the PS3 CPU, x86-64 is doing a worse job in mimicking FPU and VU floats calculation behavior. This is resolved by clamping, accurate math used per memory offset, and/or converting floats to double precision. The emulator uses openCL for GS, and likely other components as well.</pre>
 
= Emulator Configuration =
The emulator can be configured through 4 files.
 
== Files ==


* '''config-emu-ps4.txt''' - Stores paths, basic video/audio settings in official packages. But unofficially can be also used for advanced settings for global effect in multi disc .pkg with all commands originally used in cli.conf file.  
* '''config-emu-ps4.txt''' - Stores paths, basic video/audio settings in official packages. But unofficially can be also used for advanced settings for global effect in multi disc .pkg with all commands originally used in cli.conf file.  
Line 25: Line 16:
* '''disc-swap-cli.conf''' - Stores info of multi disc games.
* '''disc-swap-cli.conf''' - Stores info of multi disc games.


== Commands ==
=== Commands ===
The rest of the CLI and LUA commands can all be found inside of any emulator's '''Eboot.bin''' file.
 
=== config-emu-ps4.txt commands ===
==== config-emu-ps4.txt commands ====


{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Values !! Notes !! Usage  
! Command !! Values !! Notes !! Usage  
|-style="background-color:#7698FF"
|-
| || Misc || ||
| --gs-uprender || none, 2x2 || Internal resolution uprender || --gs-uprender=2x2
|-
| --gs-upscale || none, gpu, edgesmooth, motionvec || upscaler? || --gs-upscale=EdgeSmooth
|-
|-
| --config-local-lua ||  ||  || --config-local-lua=""
| --config-local-lua ||  ||  || --config-local-lua=""
|-
|-
| --lopnor-config ||  0,1 ||  Enables limited PS3's PS2 config support || --lopnor-config=1
| --load-tooling-lua ||  ||  || --load-tooling-lua=0
|-
| --record-audio ||  ||  ||
|-
| --record-audio-img || ||  ||
|-
| --record-audio-image ||  ||  ||
|-
|-
| --load-tooling-lua ||   ||   || --load-tooling-lua=0
| --record-audio-ext || || ||  
|-
|-
| --max-console-spam ||  ||  ||  
| --max-console-spam ||  ||  ||  
|-
|-
| --path-snaps || dir/folder || Path to savestates folder || --path-snaps="/tmp/snapshots"
| --path-snaps || dir/folder ||   || --path-snaps="/tmp/snapshots"
|-
|-
| --path-recordings || dir/folder ||  || --path-recordings="/tmp/recordings"
| --path-recordings || dir/folder ||  || --path-recordings="/tmp/recordings"
|-
| --path-audio-images || dir/folder ||  ||
|-
|-
| --path-memcards || dir/folder ||  ||
| --path-memcards || dir/folder ||  ||
Line 50: Line 51:
| --path-vmc || dir/folder ||  || --path-vmc="/tmp/vmc"
| --path-vmc || dir/folder ||  || --path-vmc="/tmp/vmc"
|-
|-
| --emulog-file || 0, 1 ||  Creates a log file with information that is rarely useful || --emulog-file=1
| --path-emulog || dir/folder ||   || --path-emulog="/tmp/recordings"
|-
| --path-emulog || dir/folder || Sets the directory of the emulog file. Requires --emulog-file=1 command  || --path-emulog="/tmp/recordings"
|-
|-
| --path-manual || dir/folder ||  ||
| --path-manual || dir/folder ||  ||
Line 80: Line 79:
| --snapshot-modulo ||  ||  ||  
| --snapshot-modulo ||  ||  ||  
|-
|-
| --host-keyboard || slot [0-7] ||   || --host-keyboard=4
| --ds4-deadzone-adjust || || ||  
|-
|-
| --host-window-scale || scale/float ||   || --host-window-scale=0.5
| --ds4-diagonal-adjust || || ||  
|-
|-
| --host-window-pos || x,y ||  ||
| --host-pad-loses-focus ||  ||  ||  --host-pad-loses-focus=1
|-
| --host-gamepads ||  ||  ||
|-
| --host-keyboard || slot [0-7] ||  || --host-keyboard=4
|-
| --host-audio || 1,0,on,off,mono ||  || --host-audio=1
|-
| --host-audio-latency || msec/float || Audio latency must be between 0.010 and 4.0 || --host-audio-latency=1.5
|-
| --host-window-scale || scale/float ||  || --host-window-scale=0.5
|-
| --host-window-pos || x,y ||  ||
|-
|-
| --host-display-mode || normal,full,4:3,16:9  || Set display mode || --host-display-mode=full
| --host-display-mode || normal,full,4:3,16:9  || Set display mode || --host-display-mode=full
|-
|-
| --host-graph ||  fps || Debug option that requires an unleaked debug ps2 bios || --host-graph=fps
| --host-osd || 0,off,minimal,verbose ||  || --host-osd=0
|-
| --host-osd || verbose, minimal ||  || --host-osd=0
|-
|-
| --host-vsync || 0, 1 || Enable or disable vsync || --host-vsync=1
| --host-vsync ||   ||   ||
|-
|-
| --host-trophy-support ||  ||  ||
| --host-trophy-support ||  ||  ||
Line 98: Line 107:
| --rtc-epoch ||  unix_time (seconds since epoch) ||  || --rtc-epoch=1523776362
| --rtc-epoch ||  unix_time (seconds since epoch) ||  || --rtc-epoch=1523776362
|-
|-
| --framelimiter ||  0, 1 || Enable or disable Frame limiting || --framelimiter=1
| --framelimiter ||  || ||  
|-
|-
| --framelimit-fps ||  FPS/float || framelimiter || --framelimit-fps=0.8
| --framelimit-fps ||  FPS/float || framelimiter || --framelimit-fps=0.8
|-
|-
| --framelimit-scalar ||  scalar/float || Scalar must be between 0.1 and 5.0 || --framelimit-scalar=3.2
| --framelimit-scalar ||  scalar/float || scalar must be between 0.1 and 5.0 || --framelimit-scalar=3.2
|-
|-
| --framelimit-mode || slowest,slower,slow,normal,fast,fastest,turbo || A Standalone framelimiter || --framelimit-mode=fast
| --framelimit-mode || normal,fast,fastest,slow,slower,slowest ||   || --framelimit-mode=fast
|-
|-
| --ps2-lang || system  || Sets language. Might seem like a useless command, but a tiny number of games refuse to boot without a selected language. || --ps2-lang=system
| --audio-stretching ||   ||   ||
|-
|-
| --ps2-title-id || XXXX-YYYYY Example: (SLUS-21515) || Sets title-id for patches. Requires the game's region code as value || --ps2-title-id=SLES-50366
| --ps2-lang || system  || sets language || --ps2-lang=system
|-
|-
| --gs-uprender || none, 2x2 || Internal resolution upscaler. || --gs-uprender=2x2
| --pad-record ||   ||   ||
|-
|-
| --gs-upscale || none, gpu, edgesmooth, motionvec, point, motionvector, smooth, motion || upscaling type || --gs-upscale=EdgeSmooth
| --max-disc-num || 1-5  || numbers of discs in package (maximum=5)  || --max-disc-num=1
|-style="background-color:#ffe680"
|  || CDVD || ||
|-
|-
| --max-disc-num || 1-5  || numbers of discs in package (maximum=5) || --max-disc-num=1
| --ps2-title-id ||   || sets title-id for patches || --ps2-title-id=SLES-50366
|-
|-
| --boot-disc-id || 1-5  ||  sets boot disc for multi-disc pkg || --boot-disc-id=0
| --boot-disc-id || 1-5  ||  sets boot disc for multi-disc pkg || --boot-disc-id=0
|-
|-
| --switch-disc-reset || 1 = Enables resetting the game upon disc swap, 0 = Disables resetting the game upon disc swap|| 0 Can be used to prevent resetting the game when switching multiple discs. Useful for games like Samurai warriors 2 that include an import data feature. Sadly this command isn't supported by many emulators, but jakv2 is confirmed to support it || --switch-disc-reset=1
| --mute-audio ||all,none,main,bgm || || --mute-audio=all
|-
|-
| --cdvd-sector-read-cycles || 0.1 = Fastest, 80000 = Slowest|| Set DVD reading speed. Higher values are slower, lower values are faster. Kinetica uses 40000, Psychonauts 4000, Red dead revolver 5000, Rise of kasai 31000. Some games require moderate speed, too slow or too fast could cause audio problems.|| --cdvd-sector-read-cycles=40000
| --mute-streaming-audio || all,none,main,bgm || || --mute-streaming-audio=all
|}
 
==== XXXX-YYYYY_cli.conf commands ====
 
Please note that commands listed here work also in config-emu-ps4.txt. Anyway official way to use them is by CLI file. CLI file way is also needed for multi-disc packages.
 
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Values !! Notes !! Usage
|-
|-
| --cdvd-sector-seek-cycles || 0.1 = Fastest, 80000 = Slowest || Set the speed at which the emulated CDVD spins. Higher values are slower,
| --mtap1 || always, ByHost || Multitap Switch || --mtap1=always
lower values are faster. Fixes boot-up sometimes. More info here [https://github.com/PCSX2/pcsx2/pull/3877]. || --cdvd-sector-seek-cycles=1
|-
|-
| --verbose-cdvd-reads || 0, 1 || Might improve disc reading if set to 1|| --verbose-cdvd-reads=0
| --mtap2 || always, ByHost || Multitap Switch || --mtap2=always
|-style="background-color:#ff8080"
|  || Audio || ||
|-
|-
| --host-audio-latency || msec/float || Audio latency must be between 0.010 and 4.0 || --host-audio-latency=1.5
| --ee-cache-breaks-block || || ||  
|-
|-
| --path-audio-images || dir/folder ||   ||  
| --ee-validate-kernel || || ||  
|-
|-
| --record-audio || || ||  
| --ee-block-validation || PageProt,ShortHash,Hash,None || Way of validating that block been modified, and require recompilation. [[https://github.com/PCSX2/pcsx2/blob/4db6b287cda817345f7ed4268a8a68f9fda76f26/pcsx2/Memory.cpp#L869| Some info about PageProt way]] || --ee-block-validation=None
|-
|-
| --record-audio-img || || ||  
| --ee-shorthash-len || inst_count/integer || Length of shorthash in instruction/opcode count. Require --ee-block-validation=ShortHash ||  
|-
|-
| --record-audio-image || || ||  
| --ee-const-folding || None,Gpr,Fpu,All || EE constant folding [https://en.wikipedia.org/wiki/Constant_folding More info] || --ee-const-folding=none
|-
|-
| --record-audio-ext || || ||  
| --ee-load-rewrites || || ||  
|-
|-
| --host-audio || 1,0,on,off,mono ||   || --host-audio=1
| --ee-store-rewrites || || ||  
|-
|-
| --mute-audio ||all,none,main,bgm || || --mute-audio=all
| --ee-live32 || || ||  
|-
|-
| --mute-streaming-audio || all,none,main,bgm || || --mute-streaming-audio=all
| --ee-pc-coherency || || ||  
|-
|-
|-style="background-color:#D7EF54"
| --ee-inst-marking || || ||  
|| Controllers || ||  
|-
|-
| --ds4-deadzone-adjust ||  ||  ||  
| --ee-kernel-hle ||  || High-level emulation kernel ||  
|-
|-
| --ds4-diagonal-adjust || || ||  
| --ee-regalloc-scalar || 0,none,ReadOnly,WriteOnly,RW || register allocation setting ||  
|-
|-
| --host-pad-loses-focus || || || --host-pad-loses-focus=1
| --ee-regalloc-simd || || register allocation setting ||  
|-
| --host-gamepads || 0, 1 ||  || --host-gamepads=1
|-
|-
| --pad-record || 0, || Enables logging pad info in emulog ||
| --ee-regalloc-preserve-scalar || 0,none,LoadOnly,StoreOnly,LS || register allocation setting ||  
|-
|-
| --pad-analog-to-digital || 0, 1 || Eternel ring emu uses the value 0 || --pad-analog-to-digital=0
| --ee-regalloc-preserve-simd || || register allocation setting ||  
|-
|-
| --mtap1 || Disabled, Always, ByHost || Multitap switch. The values are correct but the multitap only works in certain games. || --mtap1=always
| --ee-static-block-links || options Type,Type,... [None,Branches,JAL,COP2,All] || || --ee-static-block-links=JAL,COP2
|-
|-
| --mtap2 || Disabled, Always, ByHost || Multitap switch. Some games require multitap to be selected only on second port (1, 2-a, 2-b, 2-c layout). To achieve that, we need to disable the first mtap. In some cases, the emulator can be flawed in how it handles multi-tap when it involves "--mtap2". All functions for 2A, 2B, 2C, 2D must be redirected to ports on multi-tap 1 by using memory patches. || --mtap2=always
| --ee-hook || AdvanceClock, FastForwardClock, more? || Non-conditional EE hook (This is not speedhack!), advancing/ff'ing clock can be useful for CFC2/CTC2 || --ee-hook=0x0025b3b0,FastForwardClock
|}
 
=== XXXX-YYYYY_cli.conf commands ===
 
<pre>These commands work in config-emu-ps4.txt, but the official way to use them is through the CLI file (It is also needed for multi-disc packages). Additionally, some commands are still not discovered, and known commands might be missing their values. </pre>
<pre>All commands are pre-made. Creating new CLI commands is impossible.
The values of the commands are also pre-defined by Sony and/or have a set of possible values or ranges.
Some CLI commands have no effect, as they were added to the eboot.bin without being programmed. Some useful commands were removed or added in or from different emu revisions, or their effects were changed. In some emulators, CLI configurations can be found in the ram at SceLibcHeap[0]-3-881004000.</pre>
====EmotionEngine (MIPS-IV)====
=====[https://www.psdevwiki.com/ps2/Emotion_Engine EE]=====
<pre>Commands for the emulated Emotion Engine. These commands may improve performance, or allow for better sync.</pre>
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Values !! Notes !! Usage
|-style="background-color:#7698FF"
|  || Speedhacks / Desync Fixes|| ||
|-
|-
| --ee-cycle-scalar || Accelerate EE cycles: (0.99 => 0.1)<br>Decelerate EE cycles: (1.1 => 5.0) || Accelerating can help improve EE-DMA sync at the cost of performance, whereas decelerating can help ensure EE is in sync with VU0-VU1 while improving performance (too much deceleration can cause stuttery fmvs.) The default value is 1.0 || --ee-cycle-scalar=1.0
| --ee-jit-disasm || 0,1=mips,2=x86 || Emotion Engine Just in Time disassembler mode (?) ||  
|-
|-
| --ee-context-switch-cycles || Accelerate cycles (360 => 0) <br>Decelerate cycles (361 => ∞ ) || Its effects are mysterious, but likely affect COP0. Does not work on Jak emulators. Default value is 360, and its type is 4 bytes. Seems to be useful for Bee Movie and Metal Gear Solid 3.|| --ee-context-switch-cycles=2700?
| --ee-jit-pagefault-threshold || || || --ee-jit-pagefault-threshold=30
|-
|-
| [[--ee-hook|--ee-hook]] || AdvanceClock<br>FastForwardClock<br>Mfifodrain || Set a function to be applied every time the PC register reaches the selected offset in the EE memory. FastForwardClock stalls the EE for an unknown non-changeable number of cycles, while AdvanceClock stalls the EE for an allocated number of cycles to push other processing units to align with the EE's speed, and temporarily allocate higher cpu power for them, which is helpful when the vu1 requires higher juice for its performance, and when the vu0 and dma channels run slower than the ee. Mfifodrain is still unknown. [[--ee-hook|For more examples]] ||--ee-hook=0x0025A9F2,AdvanceClock,,500 <br>--ee-hook=0x0019F0AD,FastForwardClock
| --ee-context-switch-cycles || || ||  
|-
|-
|-style="background-color:#D7EF54"
| --ee-evt-check-full || || ||  
|| Game fixes || ||
|-
|-
| --ee-jit-pagefault-threshold || 0-254 || Ignore JIT pagefaults, usually caused by data placed right after code. JIT try to recompile it, and obviously hit some bad opcodes. This command reduces the occurrence of crashes the higher it is. || --ee-jit-pagefault-threshold=40
| --ee-cycle-scalar || multiplier/float || || --ee-cycle-scalar=1.0
|-
|-
| --ee-block-validation || PageProt, PageProtection, Hash, Full, none || way of validating that block been modified, and require recompilation. [[https://github.com/PCSX2/pcsx2/blob/4db6b287cda817345f7ed4268a8a68f9fda76f26/pcsx2/Memory.cpp#L869| Some info about PageProt way]] || --ee-block-validation=None
| --ee-mem-check-eob || || ||  
|-
|-
| --ee-shorthash-len || inst_count/integer || Length of shorthash in instruction/opcode count. Require --ee-block-validation=Hash ||
| --ee-sif0-cycle-scalar || multiplier/float || || --ee-sif0-cycle-scalar=2.0
|-
|-
| --ee-const-folding || None,Gpr,Fpu,All || EE constant folding. "All" seems to be the default option. || --ee-const-folding=none
| --ee-sif1-cycle-scalar || multiplier/float || || --ee-sif1-cycle-scalar=0.1
|-
|-
| --ee-ignore-segfault || none, read, write, readwrite || Ignore segmentation fault. Ignore rw from/to unmapped memory, known in pcsx2 as TLB miss (load.store) || --ee-ignore-segfault=readwrite
| --iop-sif0-cycle-scalar || multiplier/float || || --iop-sif0-cycle-scalar=1.5
|-
|-
| --ee-native-function || memset, memcpy, strlen, strcmp, strcasecmp, litodp, dptoli, floatdidf, fptoui, fptodp, dptofp, fabs, fabsf, ieee754_atan2f, ieee754_asinf, ieee754_acosf, ieee754_sinf, ieee754_cosf, ieee754_sqrtf, asinf, acosf, sinf, cosf, sqrtf. || Hook mips function with HLE x64 native version. Much faster, but tricky to keep correct timings on ps2 VM. || --ee-native-function=memcpy,0x11e328
| --iop-sif1-cycle-scalar || multiplier/float || || --iop-sif1-cycle-scalar=1.8
|-style="background-color:#FFAA00"
|  || Other || ||
|-
|-
| --ee-jit-disasm || 0 or 1 for mips and 2 for x86 || Emotion engine Just in Time disassembler mode (Likely a debug log option) || --ee-jit-disasm=1
| --iop-block-validation || IsC, ShortHash || ||  
|-
|-
| --ee-ignore-break || 0, 1 || Turns a BREAK instruction into a NOP Instruction. ||  
| --iop-validate-kernel || || ||  
|-
|-
| --ee-break-as-nop || 0, 1 || Turns a BREAK instruction into a NOP Instruction. || --ee-break-as-nop=1
| --iop-shorthash-len || || ||  
|-
|-
| --ee-jit-opt-debug || 0, 1 || ||
| --iop-const-folding || None,Gpr,All || IOP constant folding [https://en.wikipedia.org/wiki/Constant_folding More info] || --iop-const-folding=All
|-
|-
| --ee-pc-coherency || 0, 1 || Flush PC register to memory on every mips opcode. Result in more accurate EE PC reg reads. ||  
| --iop-pc-coherency || || ||  
|-
|-
| --ee-insn-flush-pc || 0, 1 || Flush PC register to memory on every mips opcode. Result in more accurate EE PC reg reads. ||
| --iop-inst-marking || || ||  
|-
| --ee-inst-marking || 0,1? || ||  
|-
|-
| --ee-insn-marking || 0,1? || ||  
| --iop-jit-disasm || || ||  
|-
|-
| --ee-kernel-hle || 0, 1 || High-level emulation kernel. Apply HLE patches (used in mast1c0re part 2 Vulnerability 2). Apply EE kernel patches which run previously prepared x64 code instead of recompiling real code part. ||  
| --iop-evt-check-full || || ||  
|-
|-
| --ee-injection-kernel || 0, 1 || Just like --ee-kernel-hle, except using a different name. ||
| --iop-cycle-scalar || || ||  
|-
|-
| --ee-injection-title || 0, 1 || Apply HLE patches (used in mast1c0re part 2 Vulnerability 2). Apply per title patches which run previously prepared x64 code instead of recompiling real code part. ||
| --idec-cycles-per-qwc || int/multiplier || || --idec-cycles-per-qwc=768
|-
|-
| --ee-validate-kernel || 0, 1 || ||  
| --vu-to-double || || Converts floats to double instead of clamping? ||
|-
|-
| --ee-regalloc-scalar || 0,none,ReadOnly,WriteOnly,RW || register allocation setting ||  
| --vu-branch-hazard || || ||
|-
|-  
| --ee-regalloc-simd || readwrite, writeonly, readonly || register allocation setting ||  
| --vu-evil-branches || || Delay slot branch related ||
|-
|-  
| --ee-regalloc-preserve-scalar || LoadOnly, LO, StoreOnly, SO, LoadStore,  LS || EE JIT Scalar/Int Regalloc Mode || --ee-regalloc-preserve-scalar=LoadStore
| --vu-d-bit || 0/1 || ignore D-bit? || --vu-d-bit=0
|-
|-  
| --ee-regalloc-preserve-simd || ReadOnly, RO, WriteOnly WO, RW || EE JIT SIMD/XMM Regalloc Mode || --ee-regalloc-preserve-simd=RW
| --vu-t-bit || 0/1 || ignore T-bit? || --vu-t-bit=0
|-
|-  
| --ee-static-block-links || options Type,Type,... [Branch,Branches,JAL,COP2,All] || || --ee-static-block-links=JAL,COP2
| --vu-inst-mflag  || || Instant mac flag? ||
|-
|-  
| --vtune-ee || || ||
| --vu-inst-cflag || || Instant clipping flag? ||
|-
|-  
| --ee-live32 || 0,1? || ||
| --vu-custom-min-max  || 0, 1 || Custom Max/Mini logic for denormals || --vu-custom-min-max=0
|-
| --ee-cache-breaks-block || 0,1 || End recompiler block on r5900 cache opcode. ||
|-
| --ee-evt-check-full || 0, 1 || Perform more accurate EE event check ||
|-
| --ee-peephole || 0, 1? || ||
|-
| --ee-load-rewrites || 0,1? || ||
|-
| --ee-store-rewrites || 0,1? || ||  
|-
| --ee-precompile-trace || || ||
|-
| --ee-penalize-short-blocks || 0, 1 || Add cycles to short recompiled blocks? ||
|-
| --ee-mem-check-eob || || EE memory check end of block ||
|-
| --ee-insn-callmark || || ||
|-  
|-  
| --ee-inline-limit-full || insn_count/integer || ||
| --vu-custom-fused-madd || || Custom FMA (fused multiply-add) ||
|-
| --ee-inline-limit-partial || || ||
|-
| --ee-stlf-cycle-threshold || ? ||?||
|-
| --detect-idle-ee || 0, 1 ||  || --detect-idle-ee=1
|-
|}
 
=====FPU=====
<pre>The FPU is a fast single-precision unit that typically serves the EE by calculating in-game physics. It mostly controls the accuracy of the movement of in-game objects, or the game's gravity as a whole. In some cases, it is best to use COP2 commands with the FPU's to ensure the accuracy of the game's geometrical calculations.</pre>
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Values !! Notes !! Usage
|-style="background-color:#D7EF54"
|  || Game fixes || ||
|-
| --fpu-no-clamping ||  1 = Extra + preserve sign<br>0 = Extra || Changes the clamping behavior of the FPU. Might fix freezing issues, or misplaced characters/items (Inaccuracies with in-game physics) || --fpu-no-clamping=0
|-  
|-  
| --fpu-custom-min-max || 0, 1 || Custom Max/Mini logic for denormals. Enabled by default. Disabling it might break some games || --fpu-custom-min-max=0
| --vu-opt-jr-caching  || || Optimize Jump Register caching? vi15? ||
|-  
|-  
| --fpu-accurate-range || start,end offset (0x0 - 0x1FFFFFF) || Accurate Mul/Div/Add/Sub Math instructions for the FPU by using software floats rather than hardware floats. Can be used for full EE/FPU Mathematical accuracy in the specified range. || --fpu-accurate-range=0x1acce0,0x2acce0
| --vu-opt-sf-check  || || Status flag related? ||
|-  
|-  
| --fpu-no-clamp-range || start,end offset (0x0 - 0x1FFFFFF) || Per-range clamping for the FPU in the selected memory range. || --fpu-no-clamp-range=0x1acce0,0x2acce0
| --vu-hack-triace  || 0,1 || Special hack for Tri Ace games, probably special guard bit handling to get precise ADD(i) result || --vu-hack-triace=1
|-  
|-  
| --fpu-accurate-muldiv || 0 = Disabled<br>1 = Enabled  || Allows the FPU to accurately Divide/Multiply by 0 for all offsets by using software floats rather than hardware floats. (Extremely slow) || --fpu-accurate-muldiv=1
| --vu-xgkick-delay || vu_cycles/integer || Delay xgkick instruction execute, pcsx2 use 6 cycles, emu in ps3 use 2-8 cycles depend on game || --vu-xgkick-delay=8
|-
| --vu-range-merge || vu_inst_cnt || ||
|-  
|-  
| --fpu-accurate-addsub || 0 = Disabled<br>1 = Enabled || Allows the FPU to accurately Add/Subtract for all offsets by using software floats rather than hardware floats. (Extremely slow) || --fpu-accurate-addsub=1
| --vu0-opt-flags  || [0,1,2] - 1=safe, 2=unsafe || Flags to optimize VU recompilation || --vu0-opt-flags=1
|-  
|-  
| --fpu-accurate-muldiv-range || start,end offset (0x0 - 0x1FFFFFF) || Allows the FPU to accurately Divide/Multiply by 0 in the specified ee memory range by using software floats rather than hardware floats. || --fpu-accurate-muldiv-range=0x1acce0,0x2acce0
| --vu0-opt-vf00  || || optimization for vf00? Not really sure here as vf00 is a special register where x,y,z are hard coded to 0.0 and w is hard-coded to 1.0. Not sure what to optimize here.  ||  
|-  
|-  
| --fpu-accurate-addsub-range || start,end offset (0x0 - 0x1FFFFFF) || Allows the FPU to accurately Add/Subtract in the specified ee memory range by using software floats rather than hardware floats. || --fpu-accurate-addsub-range=0x1acce0,0x2acce0
| --vu0-opt-subroutine || || ||
|-
|-style="background-color:#7698FF"
|  || Speedhacks || ||
|-
| --fpu-rsqrt-fast-estimate || 0, 1 || Decreases RSQRT's accuracy. It is enabled by default. Disabling it is required for the full accuracy of the FPU. || --fpu-rsqrt-fast-estimate=1
|-
| --fpu-accurate-mul-fast || 0, 1 || A command that prevents muldiv commands from slowing the emulation down. || --fpu-accurate-mul-fast=1
|-style="background-color:#FFAA00"
|| Other || ||
|-
| --fpu-custom-fused-madd || 0, 1 || Custom FMA (fused multiply-add). Disabled by default. || --fpu-custom-fused-madd=0
|-
| --fpu-to-double || 0, 1 || Converts floats to doubles (Accurate) || --fpu-to-double=1
|-  
|-  
| --fpu-clamp-operands || 0, 1 || Affects the fpu's clamping behavior || --fpu-clamp-operands=1
| --vu0-const-prop || || Constant propagation [https://en.wikipedia.org/wiki/Constant_folding#Constant_propagation More info] ||
|-  
|-  
| --fpu-clamp-results || 0, 1 || Affects the fpu's clamping behavior || --fpu-clamp-results=1
| --vu0-no-clamping || 0, 1 || No clamping for vu0 (default 1) || --vu0-no-clamping=0
|-  
|-  
|}
| --vu0-clamp-operands || 0, 1 || vu0 clamp on operand stage || --vu0-clamp-operands=1
 
=====COP2=====
<pre>VU0 Macro-mode. These commands may assist the FPU further.</pre>
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Values !! Notes !! Usage
|-style="background-color:#7698FF"
| || Speedhacks || ||
|-
| --cop2-opt-flags || 0, 1 ,2 || Optimize flags upon recompilation (1 is safe, 2 update sticky, and mac flag on every status flag update) setting it to 0 can in some cases improve FPU accuracy. [https://github.com/PCSX2/pcsx2/blob/58f5a5b915915293b90e7e8f34c33f9c0424d1e8/pcsx2/x86/microVU_Misc.h#L280 More Info] || --cop2-opt-flags=1
|-  
|-  
| --cop2-opt-vf00 || 0, 1, 2 || Optimization for the vf00 register. || --cop2-opt-vf00=1
| --vu0-clamp-results  || 0, 1 || vu0 clamp for results of operations || --vu0-clamp-results=1
|-  
|-  
| --cop2-const-prop || 0, 1 || Disables or enables constant propagation. Can Be Used as speedhack for COP2 hungry games when set to 1 [https://github.com/PCSX2/pcsx2/blob/58f5a5b915915293b90e7e8f34c33f9c0424d1e8/pcsx2/x86/microVU_Misc.h#L312 More info] || --cop2-const-prop=1
| --vu0-inst-|| || instant Q, not stall on WAITQ  ||  
|-  
|-  
| --cop2-di-bits || 0, 1 || 0 to skip setting invalid, and div by Zero flags in status register, and therefore improve performance. Can be used as speedhack as it skip costly calculations. || --cop2-di-bits=0
| --vu0-inst-p || || instant P, not stall on WAITP ||
|-style="background-color:#D7EF54"
| || Game fixes || ||
|-
| --cop2-no-clamping ||  1 = Extra + preserve sign<br>0 = Extra || Changes the clamping behavior of the COP2. The default emulator's behavior is none of the included values and cannot be set by CLI commands.  || --cop2-no-clamping=0
|-
| --cop2-accurate-range || start,end offset (0x0 - 0x1FFFFFF) ||Accurate Mul/Div/Add/Sub math instructions for the COP2 by using software floats rather than hardware floats. Can be used for full COP2 mathematical accuracy in the specified range. || --cop2-accurate-range=0x123456,0x134567
|-  
|-  
| --cop2-no-clamp-range || start,end offset (0x0 - 0x1FFFFFF) || Per-range clamping for COP2. || --cop2-no-clamp-range=0x123456,0x134567
| --vu0-use-rcp  || || use sse rcp ||
|-  
|-  
| --cop2-accurate-mul-range || start,end offset (0x0 - 0x1FFFFFF) || Accurate multiplication instructions for the COP2 in the specified range by using software floats rather than hardware floats || --cop2-accurate-mul-range=0x123456,0x134567
| --vu0-use-rsqrt || || use sse rsqrt ||
|-  
|-  
| --cop2-accurate-mul || 1 = Enabled<br>0 = Disabled || Allows the COP2 to accurately multiply for all offsets by using software floats rather than hardware floats. (Extremely slow) || --cop2-accurate-mul=1
| --vu0-di-bits || || ||
|-  
|-  
| --cop2-accurate-addsub || 1 = Enabled<br>0 = Disabled || Allows the COP2 to accurately Add/Subtract for all offsets by using software floats rather than hardware floats. (Extremely slow) || --cop2-accurate-addsub=1
| --vu0-jr-cache-policy || newprog,sameprog,auto || || --vu0-jr-cache-policy=sameprog
|-
|-
| --cop2-accurate-addsub-range || start,end offset (0x0 - 0x1FFFFFF) || Allows the COP2 to accurately Add/Sub in the specified ee memory range by using software floats rather than hardware floats. || --cop2-accurate-addsub-range=0x123456,0x134567
| --vu0-jalr-cache-policy || newprog,sameprog,auto || || --vu0-jalr-cache-policy=sameprog
|-
|-
|-style="background-color:#FFAA00"
| --vu0-mul0fix-range || vu0 memory offset start,end (0x0 - 0xFFF) || Fix for games that multiply by zero ||
| || Other || ||
|-
|-
| --cop2-regalloc || 0, 1 ? || PCSX2 seems to have this enabled by default. Uknown function, might be a speechack. ||
| --vu1 || || || --vu1=jit-sync
|-
| --vu1-mul0fix-range || vu1 memory offset start,end (0x0 - 0x3FFF) || Fix for games that multiply by zero ||
|-  
|-  
| --cop2-inst-q || 0, 1 || instant Q, no stalling on VWAITQ, or instances of Q. Crashes some games when enabled. ||
| --vu1-opt-flags || [0,1,2] - 1=safe, 2=unsafe || Flags to optimize VU recompilation || --vu1-opt-flags=0
|-  
|-  
| --cop2-inst-p || 0, 1 || instant P, no stalling on VWAITP, or instances of P. ||
| --vu1-opt-vf00 || || optimization for vf00? Not really sure here as vf00 is a special register where x,y,z are hard coded to 0.0 and w is hard-coded to 1.0. Not sure what to optimize here. ||
|-  
|-  
| --cop2-use-rcp || 0, 1 || Enables SSE RCP. Disabled by default ||
| --vu1-opt-subroutine || || ||
|-  
|-  
| --cop2-use-rsqrt || 0, 1 || Enables SSE RSQRT || --cop2-use-rsqrt=0
| --vu1-const-prop || || Constant propagation [https://en.wikipedia.org/wiki/Constant_folding#Constant_propagation More info] ||
|-  
|-  
| --cop2-clamp-operands || 0, 1 || Affects the COP2's clamping behavior|| --cop2-clamp-operands=1
| --vu1-no-clamping || 0, 1 || No clamping for vu1 (default 1) || --vu1-no-clamping=0
|-  
|-  
| --cop2-clamp-results || 0, 1 || Affects the COP2's clamping behavior  || --cop2-clamp-results=1
| --vu1-clamp-operands || 0, 1 || vu1 clamp on operand stage || --vu1-clamp-operands=1
|-  
|-  
|}
| --vu1-clamp-results || 0, 1 || vu1 clamp for results of operations || --vu1-clamp-results=1
 
====Vector Units (VU)====
=====VU=====
<pre>Custom DSPs used to process vertex data, physics calculations, and other related tasks. Settings found here affect VU1, VU0, and COP2. Most of these commands fix broken or missing geometry along with black screens.</pre>
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Values !! Notes !! Usage
|-style="background-color:#ff99c2"
| || Graphical fixes || ||
|-
| --vu-xgkick-delay  || Limit is between (0 => 31)  || Delay xgkick instruction execution. PCSX2 uses 6 cycles, PS3 uses 2-8 cycles depending on the game. Can be used to repair missing graphics with 0 being the most compatible. Useful for games with GIF issues || --vu-xgkick-delay=8
|-
| --vu-custom-min-max  || 0, 1 || Custom Max/Mini logic for denormals. Disabled on pcsx2 by default but enabled by default on a couple of emus such as jakv2. Disabling it could potentially restore missing graphics by speeding up the vector units.|| --vu-custom-min-max=0
|-
|-style="background-color:#D7EF54"
|  || Game fixes || ||
|-
| --vu-hack-triace  || 0, 1 || A hack designed specifically for games developed by Tri Ace. Corrects the VU's addi calculation. Without it, the result will be one bit off, which is enough to break the game's decryption algo. || --vu-hack-triace=1
|-  
|-  
| --vu-branch-hazard || 0, 1 || Disabling it managed to prevent "Batman - Rise of Sin Tzu" from crashing|| --vu-branch-hazard=0
| --vu1-inst-q || || instant Q, not stall on WAITQ ||
|-  
|-  
| --vu-evil-branches || 0, 1 || Take in count branch in delay slot, or not. [https://github.com/PCSX2/pcsx2/blob/58f5a5b915915293b90e7e8f34c33f9c0424d1e8/pcsx2/x86/microVU_Misc.h#L306 More Info]||
| --vu1-inst-p || || instant P, not stall on WAITP ||
|-  
|-  
| --vu-to-double || 0, 1 || Converts floats to double. Enabling it is the accurate option.  || --vu-to-double=1
| --vu1-jr-cache-policy || newprog,sameprog,auto || || --vu1-jr-cache-policy=sameprog
|-
|-
| --vu-custom-fused-madd  || 0, 1 || Custom FMA (fused multiply-add). Disabled by default || --vu-custom-fused-madd=1
| --vu1-jalr-cache-policy || newprog,sameprog,auto || || --vu1-jalr-cache-policy=sameprog
|-  
|-  
|-style="background-color:#7698FF"
| --vu1-use-rcp || || use sse rcp ||
|  || Speedhacks || ||
|-
| --vu-opt-sf-check  || 0, 1 || Updates status flags only on blocks which will read them. Known in pcsx2 as mVU flag hack. Won't work with most emulators, but will work on Arc Twilight of the Spirits™ || --vu-opt-sf-check=1
|- 
| --vu-opt-jr-caching  || 0, 1 || Optimize Jump Register caching. (vi15). Won't work with most emulators but will work on Arc Twilight of the Spirits™ || --vu-opt-jr-caching=1
|-style="background-color:#FEA15C"
|  || Other || ||
|-
| --vu-d-bit  || 0, 1 || Debug break. Halts the VU and sends an interrupt to the EE. || --vu-d-bit=0
|-  
|-  
| --vu-t-bit  || 0, 1 || Debug halt. Acts similarly to D-bit || --vu-t-bit=0
| --vu1-use-rsqrt || || use sse rsqrt ||
|-  
|-  
| --vu-inst-mflag  || 0, 1 || ? || --vu-inst-mflag=1
| --vu1-di-bits || || ||
|-  
|-  
| --vu-inst-cflag || 0, 1 || || --vu-inst-cflag=1
| --vu1-injection || 0, 1 or enable/disable depend on emu revision || || --vu1-injection=1
|-  
|-  
| --vtune-vu  || ? || ? ||
| --vtune-vu  || || ||
|-  
|-  
| --vu-jit-disasm  || 0, 1, 2 || ? || --vu-jit-disasm=1
| --vu-jit-disasm  || || ||
|-  
|-  
| --vu-range-merge || vu_inst_cnt || ? ||  
| --vu1-mpg-cycles  || cycles_per_Microprogram || || --vu1-mpg-cycles=1000
|-  
|-  
|}
| --fpu-to-double || || Converts floats to double instead of clamping? ||
 
=====VU1=====
<pre>VU1 is the GS’s alternate processing unit. Commands here typically improve performance, prevent crashes, and fix SPS; graphical glitches.</pre>
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Values !! Notes !! Usage
|-style="background-color:#7698FF"
|| Speedhacks || ||
|-
|-
| --vu1-mpg-cycles  || 0 - 400000 || Set initial speed for VU1 Micro-programs. 100 is the default value. If VU1 requirements were a bottleneck, increasing it will result in better performance while decreasing it will result in the opposite. Increasing it can be beneficial for MTVU sensitive games.|| --vu1-mpg-cycles=1000
| --fpu-rsqrt-fast-estimate || 0,1 || || --fpu-rsqrt-fast-estimate=1
|-
|-  
| --vu1-di-bits || 0, 1 || 0 Skips setting invalid, and Divides by zero flags in status register. Can be used as a speedhack as it can skip costly calculations. But at the same time, it can cause issues such as broken geometry. || --vu1-di-bits=0
| --fpu-no-clamping || 0, 1 || No clamping for fpu (ee/fpu clamping: none in pcsx2)|| --fpu-no-clamping=0
|-
|-
| --vu1-const-prop || 0, 1|| Enabled by default. 0 will disable it and cause performance issues.[https://github.com/PCSX2/pcsx2/blob/58f5a5b915915293b90e7e8f34c33f9c0424d1e8/pcsx2/x86/microVU_Misc.h#L312 More info] || --vu1-const-prop=1
| --fpu-no-clamp-range || start,end offset (0x0 - 0x1FFFFFF) || No clamping for fpu in selected memory range || --fpu-no-clamp-range=0x1acce0,0x2acce0
|-
| --vu1-opt-flags || 0, 1, 2 || Optimize flags upon recompilation (1 is safe, 2 update sticky, and mac flag on every status flag update) [https://github.com/PCSX2/pcsx2/blob/58f5a5b915915293b90e7e8f34c33f9c0424d1e8/pcsx2/x86/microVU_Misc.h#L280 More Info] || --vu1-opt-flags=0
|-  
|-  
| --vu1-opt-vf00 || 0, 1, 2 || Optimization for the vf00 register. || --vu1-opt-vf00=2
| --fpu-clamp-operands || 0, 1 || fpu clamp on operand stage (combined with --fpu-clamp-results = ee/fpu clamping: extra in pcsx2) || --fpu-clamp-operands=1
|-  
|-  
| --vu1-jr-cache-policy || newprog, sameprog, auto, new, same || PCSX2 uses newprog as default setting. Setting it into newprog has been proven to fix some crashes [https://github.com/PCSX2/pcsx2/blob/58f5a5b915915293b90e7e8f34c33f9c0424d1e8/pcsx2/x86/microVU_Misc.h#L319 Info] || --vu1-jr-cache-policy=newprog
| --fpu-clamp-results || 0, 1 || fpu clamp for results of operations (ee/fpu clamping: normal in pcsx2) || --fpu-clamp-results=1
|-
| --vu1-jalr-cache-policy || newprog, sameprog, auto, new, same || PCSX2 uses newprog as default setting. Setting it into newprog has been proven to fix some crashes [https://github.com/PCSX2/pcsx2/blob/58f5a5b915915293b90e7e8f34c33f9c0424d1e8/pcsx2/x86/microVU_Misc.h#L319 Info] || --vu1-jalr-cache-policy=newprog
|-  
|-  
|-style="background-color:#D7EF54"
| --fpu-custom-min-max || 0, 1 || Custom Max/Mini logic for denormals || --fpu-custom-min-max=0
|  || Game fixes / Graphical fixes || ||
|-
| --fpu-custom-fused-madd || || Custom FMA (fused multiply-add) ||
|-
| --fpu-accurate-range || start,end offset (0x0 - 0x1FFFFFF) || || --fpu-accurate-range=0x1acce0,0x2acce0
|-  
| --fpu-accurate-muldiv || offset (0x0 - 0x1FFFFFF) || || --fpu-accurate-muldiv=0x123456
|-
| --fpu-accurate-muldiv-range || start,end offset (0x0 - 0x1FFFFFF) || || --fpu-accurate-muldiv-range=0x1acce0,0x2acce0
|-
| --fpu-accurate-mul-fast || 1 || || --fpu-accurate-mul-fast=1
|-
| --fpu-accurate-addsub || offset (0x0 - 0x1FFFFFF) || || --fpu-accurate-addsub=0x234567
|-
| --fpu-accurate-addsub-range || start,end offset (0x0 - 0x1FFFFFF) || || --fpu-accurate-addsub-range=0x1acce0,0x2acce0
|-
|-
| --vu1 || jit-sync || Selector between IR/JIT and it modes. Jit-sync works similarly to disabling MTVU. jit, trans, and jit-async are unimplemented functions that do not change anything. || --vu1=jit-sync
| --cop2-opt-flags || [0,1,2] - 1=safe, 2=unsafe || Flags to optimize COP2 recompilation || --cop2-opt-flags=1
|-
| --cop2-opt-vf00 || || optimization for vf00? Not really sure here as vf00 is a special register where x,y,z are hard coded to 0.0 and w is hard-coded to 1.0. Not sure what to optimize here. ||
|-
| --cop2-const-prop || || Constant propagation [https://en.wikipedia.org/wiki/Constant_folding#Constant_propagation More info] ||
|-
| --cop2-no-clamping || || No clamping for COP2 (default 1) || --cop2-no-clamping=0
|-
|-
| --vu1-no-clamping || 0,1 || Changes the clamping behavior of the VU1. Setting specific to ps4 emulators, unimplemented in pcsx2. The default emulator's behavior cannot be set by CLI commands. || --vu1-no-clamping=0
| --cop2-no-clamp-range || start,end offset (0x0 - 0x1FFFFFF) || No clamping for COP2 in selected range || --cop2-no-clamp-range=0x123456,0x134567
|-  
|-  
| --vu1-clamp-range || vu1 memory offset start,end (0x0 - 0x7FF) || Values must not exceed 0x7FF ||
| --cop2-clamp-operands || 0,1 || clamp on operand stage || --cop2-clamp-operands=1
|-
| --vu1-accurate-addsub-range || vu1 memory offset start,end (0x0 - 0x7FF) ||  Allows the VU1 to accurately add/subtract in the specified ee memory range by using software floats rather than hardware floats.|| --vu1-accurate-addsub-range=0x0000,0x0600
|-  
|-  
| --vu1-mul0fix-range || vu1 memory offset start,end (0x0 - 0x7FF) || Allows the VU1 to accurately multiply by 0 in the specified ee memory range by using software floats rather than hardware floats. || --vu1-mul0fix-range=0x123,0x123
| --cop2-clamp-results || 0,1 || clamp for results of operations || --cop2-clamp-results=1
|-  
|-  
| --vu1-injection || 0, 1 || unknown || --vu1-injection=1
| --cop2-regalloc || || ||
|-
| --vu1-native-patch || 0, 1 || Use native patches from recompiler, not compatible with jak emus. Sony uses it for their official release of Primal|| --vu1-native-patch=1
|-
|-style="background-color:#FEA15C"
|  || Other || ||
|-
| --vu1-inst-p ||0, 1 || instant P, no stalling on WAITP, or instances of P || --vu1-inst-p=1
|-  
|-  
| --vu1-use-rcp || 0, 1 || Use SSE/AVX RCP. Speedhack. Likely used only in EFU pipeline, due to rare use, its really not worth to enable it. Speed improvement will be marginally/unnoticeable. Disabled by default ||
| --cop2-inst-q || || instant Q, not stall on VWAITQ ||
|-
| --vu1-use-rsqrt || 0, 1 || Use SSE/AVX rsqrt instead of doing sqrt and then div. Speedhack, rather safe to use on VU1. ||
|-  
|-  
| --vu1-clamp-operands || 0, 1 || Clamp operands before mathematical operation. || --vu1-clamp-operands=1
| --cop2-inst-p || || ? ||
|-  
|-  
| --vu1-clamp-results || 0, 1 || Clamp result after mathematical operation. || --vu1-clamp-results=1
| --cop2-use-rcp || || use sse rcp ||
|- 
| --vu1-inst-q || 0, 1 || instant Q, no stalling on WAITQ, or instances of Q.  || --vu1-inst-q=1
|-  
|-  
| --assert-path1-ad || 0, 1 || Path 1 is how the GIF takes data from VU1 via XGKICK instruction. It's unknown what this command does but it's related to VU1, and helps prevent crashes in VU1 sensitive games when enabled. || --assert-path1-ad=1
| --cop2-use-rsqrt || 0,1 || use sse rsqrt || --cop2-use-rsqrt=0
|-  
|-  
|}
| --cop2-di-bits || || ||
 
=====VU0=====
<pre>VU0 is the Emotion Engine’s alternate processing unit. It is sometimes referred to as "micro-mode"</pre>
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Values !! Notes !! Usage
|-style="background-color:#7698FF"
|  || Speedhacks || ||
|-
| --vu0-mpg-cycles || 0 - 400000  || Set initial cycle speed for VU0 Micro-programs. 100 is the default value. || --vu0-mpg-cycles=1000
|-
| --vu0-di-bits || 0, 1 || 0 to skip setting invalid, and Div by zero flags in status register. Can be used as speedhack as it skips costly calculations, but at the same time can cause issues like broken geometry, and weird physics behavior. Depending per game.|| --vu0-di-bits=0
|-
| --vu0-const-prop || 0, 1 || Constant propagation, can Be used as speedhack for VU0 hungry games when set to 1 [https://github.com/PCSX2/pcsx2/blob/58f5a5b915915293b90e7e8f34c33f9c0424d1e8/pcsx2/x86/microVU_Misc.h#L312 More info] || --vu0-const-prop=1
|-  
|-  
| --vu0-opt-vf00  || 0, 1, 2 || Optimization for the vf00 register. || --vu0-opt-vf00=1
| --cop2-accurate-range || start,end offset (0x0 - 0x1FFFFFF) || || --cop2-accurate-range=0x123456,0x134567
|-  
|-  
| --vu0-opt-flags  || 0, 1, 2 || Optimize flags upon recompilation (1 is safe, 2 update sticky, and mac flag on every status flag update) [https://github.com/PCSX2/pcsx2/blob/58f5a5b915915293b90e7e8f34c33f9c0424d1e8/pcsx2/x86/microVU_Misc.h#L280 More Info] || --vu0-opt-flags=1
| --cop2-accurate-mul || offset (0x0 - 0x1FFFFFF) || || --cop2-accurate-mul=0x123456
|-  
|-  
| --vu0-jr-cache-policy || newprog, sameprog, auto, new, same || PCSX2 use newprog as default setting [https://github.com/PCSX2/pcsx2/blob/58f5a5b915915293b90e7e8f34c33f9c0424d1e8/pcsx2/x86/microVU_Misc.h#L319 Info] || --vu0-jr-cache-policy=sameprog
| --cop2-accurate-mul-range || start,end offset (0x0 - 0x1FFFFFF) || || --cop2-accurate-mul-range=0x123456,0x134567
|-
| --vu0-jalr-cache-policy || newprog, sameprog, auto, new, same || PCSX2 use newprog as default setting [https://github.com/PCSX2/pcsx2/blob/58f5a5b915915293b90e7e8f34c33f9c0424d1e8/pcsx2/x86/microVU_Misc.h#L319 Info] || --vu0-jalr-cache-policy=sameprog
|-style="background-color:#D7EF54"
|  || Game fixes || ||
|-
| --vu0-clamp-range || start, end offset (0x0 - 0x1FF) || per range clamping for VU0 || --vu0-clamp-range=0x100,0x120
|-  
|-  
| --vu0-no-clamping || 0,1 || Changes the clamping behavior of the VU0. Setting specific to ps4 emulators, unimplemented in pcsx2. The default emulator's behavior cannot be set by CLI commands. || --vu0-no-clamping=0
| --cop2-accurate-addsub || start,end offset (0x0 - 0x1FFFFFF) || || --cop2-accurate-addsub=0x123456
|-  
|-  
| --vu0-accurate-addsub-range || offset (0x0 - 0x1FF) ||Allows the VU0 to accurately Add/Subtract in the specified ee memory range by using software floats rather than hardware floats.||  
| --cop2-accurate-addsub-range || start,end offset (0x0 - 0x1FFFFFF) || || --cop2-accurate-addsub-range=0x123456,0x134567
|-
|-
| --vu0-mul0fix-range || vu0 memory offset start,end (0x0 - 0x1FF) || Allows the VU0 to accurately Multiply by 0 in the specified ee memory range by using software floats rather than hardware floats ||
| --vif-ignore-invalid-cmd || 0,1 || Ignore invalid vif commands || --vif-ignore-invalid-cmd=1
|-
|-
|-style="background-color:#FEA15C"
| --vif1-instant-xfer || || ||  
|| Other || ||
|-
|-
| --vu0-injection || 0, 1 || Unknown usage. || --vu0-injection=1
| --vif-thread-chunk-size || int/kilowords || ||
|-
|-
| --vu0-inst-|| 0, 1 || instant Q, no stalling on WAITQ, or instances of Q  || --vu0-inst-q=1
|--force-frame-blend || 0, 1 || || --force-frame-blend=1
|-
| --gs-scanout-delay || hsync_count/integer || ||
|-  
|-  
| --vu0-inst-p || 0, 1 || instant P, no stalling on WAITP, or instances of P|| --vu0-inst-p=1
| --gs-fieldswap-delay || || Wait longer than usual to change field ||
|-  
|-  
| --vu0-use-rcp  || 0, 1 || Use SSE/AVX RCP. Speedhack. Not sure why it is even available for VU0. Disabled by default || --vu0-use-rcp=1
| --gs-use-deferred-l2h || || Some delay option for L2H || -gs-use-deferred-l2h=1  
|-  
|-  
| --vu0-use-rsqrt || 0, 1 || Use SSE/AVX rsqrt instead of doing sqrt and then div. Speedhack, rather unsafe to use on VU0. || --vu0-use-rsqrt=1
| --l2h-2d-params || TRXREG,BITBLTBUF,height || || --l2h-2d-params=0x0000000800000001,0x000000003a0a2300,512,2
|-  
|-  
| --vu0-clamp-operands  || 0, 1 || Clamp operands before mathematical operation. || --vu0-clamp-operands=1
| --gs-uprender || none,2x2 || Rendering upscaler (use higher internal resolution) || --gs-uprender=2x2
|-  
|-  
| --vu0-clamp-results  || 0, 1 || Clamp result after mathematical operation. || --vu0-clamp-results=1
| --gs-upscale || none, gpu, edgesmooth, motionvec, point, || after recompilation upscaler? || --gs-upscale=EdgeSmooth
|-  
|-  
|}
| --gs-aspect-ratio || aspect/float (default=0.81) || || --gs-aspect-ratio=0.65
 
|-
====DMA Channels====
| --gs-progressive || || Force progressive scan?  ||
=====VIF=====
|-
<pre>The VIF decompresses vector data, uploads microprograms to the VUs, and sends graphical data to the GIF. Its commands
| --gs-force-bilinear || || || --gs-force-bilinear=1
are often used to fix freezing.</pre>
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Values !! Notes !! Usage
|-style="background-color:#D7EF54"
| || VIF || Game fixes ||
|-
|-
| --vif-ignore-invalid-cmd || 0, 1 || Ignore invalid vif commands. In some cases, setting it to 1 can fix games that freeze while showing the same frame. || --vif-ignore-invalid-cmd=1
| --gs-frontend-opt-mode || (0-2?) || || --gs-frontend-opt-mode=1
|-
| --gs-use-mipmap || 0,1 || Required for CL kernels using mipmaping || --gs-use-mipmap=1
|-
| --gs-use-clut-merge || 0.1 || Required for CL kernels using merging CLUT || --gs-use-clut-merge=1
|-
| --gs-kernel-cl || h2lpool, clutmerge, mipmap, DarkCloud2, fantavision || Kernel Variant || --gs-kernel-cl="clutmerge"
|-
| --gs-kernel-cl-up || h2lpool2x2, OptRightTri, clutmerge2x2, mipmap2x2, up2x2simple, up2x2skipinterp || Kernel Variant Upscaler || --gs-kernel-cl-up="clutmerge2x2"
|-
| --gs-optimize-30fps || || || --gs-optimize-30fps=1
|-
| --gs-motion-factor || motion factor || ||
|-
|-
| --vif-thread-chunk-size || 0, 1024 || Slows down both VIFS the lower it is, and speeds them up the higher it is. 1024 is the limit, with 112 being the default value.  || --vif-thread-chunk-size=100
| --gs-override-small-tri-area || || ||  
|-
|-
| --detect-idle-vif || 0, 1 || Enabled by default. Unknown function || --detect-idle-vif=0
| --gs-check-trans-rejection68 || || ||
|-style="background-color:#ff8080"
|-  
| || VIF1 || Game fixes ||
| --gs-check-trans-rejection || || ||
|-  
| --gs-skip-dirty-flush-on-mipmap ||  || Require mipmap GS CL kernel ||
|-
| --gs-packed15-fmv-opt || || ||
|-
| --gs-scanout-offsetx || relative offset/ignored || Directly overwrite GS register? ||
|-
| --gs-scanout-offsety || relative offset/ignored || ||
|-
|-
| --vif1-ignore-cmd-ints || 0, 1 || Set to 1 to ignore command interrupt bit. ([https://psi-rockin.github.io/ps2tek/#vifcommands info] , explanation of int bit is right before command list). Can in some cases fix games that freeze while showing the same frame if set to 1. Games likes "Men in Black II - Alien Escape" and "Test Drive Unlimited" Will always need it. || --vif1-ignore-cmd-ints=1
| --gs-dirty-page-policy || || ||
|-
|-
| --vif1-instant-xfer || 1 = Instant VIF1<br>0 = Delayed VIF1 || Changes VIF1 timing. 0 slows its timing and is the compatible option for most games, while 1 speeds up its timing, and being more compatible with a small fraction of games. It can be used to fix graphical glitches or potentially prevent games from freezing. || --vif1-instant-xfer=0
| --force-pal-60hz || 0,1 || Force 60hz PAL mode || --force-pal-60hz=1
|}
 
=====SIF=====
<pre>The SIF is how the EE and IOP communicate with each other. SIF has some mailbox hardware registers that the CPUs can use to pass values to each other, which happens during SIF initialization. However, once both sides have booted, they use the SIF0 (IOP->EE) and SIF1 (EE->IOP) DMA channels to communicate. Despite common belief, these commands have no effect on performance, and are rarely ever useful.</pre>
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Values !! Notes !! Usage
|-style="background-color:#99bbff"
|  ||  || SIF1 (IOP) ||
|-
|-
| --iop-sif1-cycle-scalar || Accelerate SIF cycles: (0.99 => 0.1)<br>Decelerate SIF cycles: (1.1 => ∞ )|| Controls the speed at which the IOP receives from the EE || --iop-sif1-cycle-scalar=0.1
| --gs-flush-ad-xyz || always, safe, off, 0 || || --gs-flush-ad-xyz=safe
|-
|-
| --ee-sif1-cycle-scalar ||Accelerate SIF cycles: (0.99 => 0.1)<br>Decelerate SIF cycles: (1.1 => ∞ )|| Controls the speed at which the EE sends to the IOP || --ee-sif1-cycle-scalar=0.1
| --gs-render-tile-threshold || || || --gs-render-tile-threshold=300000
|-style="background-color:#99ddff"
|  ||  || SIF0 (EE) ||
|-
|-
| --iop-sif0-cycle-scalar || Accelerate SIF cycles: (0.99 => 0.1)<br>Decelerate SIF cycles: (1.1 => ∞ )|| Controls the speed at which the IOP sends to the EE || --iop-sif0-cycle-scalar=0.1
| --gs-uv-shift-pointsampling || || || --gs-uv-shift-pointsampling=1
|-
|-
| --ee-sif0-cycle-scalar || Accelerate SIF cycles: (0.99 => 0.1)<br>Decelerate SIF cycles: (1.1 => ∞ )|| Controls the speed at which the EE receives from the IOP || --ee-sif0-cycle-scalar=0.1
| --safe-area-min || area/float (range 0.9 to 1.0) || || --safe-area-min=0.9
|-
|-
|}
| --threaded-gs || 0,1 (more?) || || --threaded-gs=0
 
====[https://www.psdevwiki.com/ps2/Graphics_Synthesizer GS]====
<pre>"GS" stands for Graphics Synthesizer. It's the PlayStation®2's co-processor that's responsible for rendering the graphics (but is also used by some games for additional calculations and other purposes)</pre>
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Values !! Notes !! Usage
|-style="background-color:#7698FF"
| || Speedhacks || ||
|-
|-
| --gs-optimize-30fps || 0, 1 || Speedhack for GS hungry games. || --gs-optimize-30fps=1
| --gs-opt-frbuff-switch || || || --gs-opt-frbuff-switch=1
|-
| --gs-adaptive-frameskip || 0, 1 || Speedhack. Skips frames when the gs demands more resources than there are available. doesn't work on all emulators.  It does however, work on jak emulators || --gs-adaptive-frameskip=1
|-
|-
| --gs-h2l-list-opt || 0, 1 || Setting it to 1 improves GS performance||--gs-h2l-list-opt=1
| --gs-ignore-rect-correction || || || --gs-ignore-rect-correction=1
|-
|-
|-style="background-color:#cbddfb"
| --cdvd-sector-read-cycles || || || --cdvd-sector-read-cycles=4000
| || GS features || ||
|-
|-
| --gs-use-mipmap || 0, 1 || Enables mipmapping support. Can be used to fix graphics. || --gs-use-mipmap=1
|}
|-
 
| --gs-use-deferred-l2h || 0, 1 || Delay option for L2H (local to host, GS to EE). || --gs-use-deferred-l2h=1  
==== XXXX-YYYYY_config.lua ====
 
It is most powerful config. Allow direct patching EE/IOP/VU memory, hooks registers, hook dma. Everything can be done here.  
 
If needed it can hook registers by using register names from alias files. Alias files (ee-cpr0-alias.lua, ee-gpr-alias.lua, ee-hwaddr.lua) are stored in lua_include folder, and can be included to config by using require ( "alias file name" ).
 
'''Known functions:
'''
Require cleanup.
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Usage !! Notes
|-
|-
| --gs-use-clut-merge || 0, 1 ||Color lookup table(?). It could possibly solve graphical issues or improve the quality of the colors. || --gs-use-clut-merge=1
! !! getEmuObject class !!
|-
| --gs-flush-ad-xyz || always, safe, safeZwrite, off, 0 || Force a primitive flush when a framebuffer is also an input texture. This fixes some processing effects, but it can sometimes be heavy on the GS in terms of performance. GTA: SA, and Jak 3 use this command. || --gs-flush-ad-xyz=safe
|-
|-
|-style="background-color:#D7EF54"
| getEmuObject || local emuObj = getEmuObject() || Required for all functions using emuObj, that include: <pre>LoadConfig SaveConfig GetPad AddVsyncHook RemoveVsyncHook AddEntryPointHook
|  || Gs settings / Behaviour || ||
RemoveEntryPointHook AddLoginHook RemoveLoginHook AddLogoutHook RemoveLogoutHook
CheckEntitlement AddImageHook AddGifTagHook SwapMemCard SetFormattedCard
OpenDiscTray CloseDiscTray SwitchDisc EnableImposeMenu GetDiscId GetDiscTitleId
AddSectorReadHook AddMCWriteHook ShowDiscSwitchInfo GetPs4SystemLang SetPs2Lang
ThrottleNorm ThrottleFast ThrottleMax AddAssertionHook SetGsTitleFix
SetDeinterlace SetDisplayAspectWide SetDisplayAspectNormal ForceRefreshRate
LoadFsShader SetDisplaySafeArea PadSetLightBar emuAddPadHook PadPressureStickRemap
SetVolumes GetVolumes SetAudioRoute GetAudioRoute AddSnapshotLoadedHook
RemoveSnapshotLoadedHook IsNeoMode IsToolingVerbose emuMediaPatch </pre>
|-
|-
| --gs-uprender || none,2x2 || Internal resolution upscaler. || --gs-uprender=2x2
|LoadConfig || ||
|-
| --gs-upscale || none, gpu, edgesmooth, smooth, motion, motionvec, motionvector, point || Upscaling type Selector || --gs-upscale=EdgeSmooth
|-
| --gs-kernel-cl-up || "DarkCloud2" "fantavision" "h2lpool2x2", "OptRightTri", "clutmerge2x2", "mipmap2x2", "up2x2simple", "up2x2skipinterp", "up2x2tc", "up2x2", default || Kernel Variant Color lookup Upscaler (?), mipmap and clutmerge and h2l need to be enabled before their options become usable|| --gs-kernel-cl-up="clutmerge2x2"
|-
| --gs-override-small-tri-area || 0, 1 || Small triangle rejection. Could potentially restore missing text in some games. || --gs-override-small-tri-area=1
|-
| --gs-dirty-page-policy || 0, 1 || || --gs-dirty-page-policy=1
|-
| --gs-ignore-dirty-page-border || 0, 1 || ? ||--gs-ignore-dirty-page-border=1
|-
| --gs-ignore-rect-correction || 0, 1 || Setting it to 1 is known to fix graphical glitches occurring in far distances || --gs-ignore-rect-correction=1
|-
|-
| --gs-opt-frbuff-switch || 0, 1 || || --gs-opt-frbuff-switch=0
|SaveConfig || ||
|-
|-
| --gs-kernel-cl || h2lpool, clutmerge, mipmap, DarkCloud2, fantavision, Mipmap and clutmerge and h2l need to be enabled before their options become usable ||Kernel Variant Color lookup(?). Options included here can be upscaling if --gs-kernel-cl-up were to be used along with it || --gs-kernel-cl="clutmerge"
|GetPad || ||
|-
| --force-frame-blend || 0, 1 || Enables blend (Deinterlacing?). Should be used to fix games with shaking screens. || --force-frame-blend=1
|-
|-
| --force-pal-60hz || 0, 1 || Enables 60hz PAL mode. || --force-pal-60hz=1
|AddVsyncHook || emuObj.AddVsyncHook(<data or name of local that store it>) || emuObj.AddVsyncHook(update_notifications_p1)
For update_notifications_p1 details check SLUS-21550 features file.
|-
|-
| --gs-progressive || 0, 1 || Enables progressive scan. It's used to fix graphical glitches/double screen issues.  ||
|RemoveVsyncHook || ||
|-
| --gs-vert-precision || 8, 16 || 3D rendering vertex precision. The emu expects the values of 8 or 16, any other values are not permitted. || --gs-vert-precision=8
|-
|-
| --gs-force-bilinear || 0, 1 || Forces bilinear filtering, can fix ghosting problems in some cases. Not recommended for games that use 2D images, as it could possibly break games that rely on nearest filtering.|| --gs-force-bilinear=1
|AddEntryPointHook || ||
|-
|-
| --gs-skip-dirty-flush-on-mipmap || 0, 1 || Skip flushing textures marked as dirty from cache when enabled. It does, however, require mipmap to be enabled first. || --gs-skip-dirty-flush-on-mipmap=1
|RemoveEntryPointHook || ||
|-
| --gs-packed15-fmv-opt || 0, 1 || || --gs-packed15-fmv-opt=1
|-
| --gs-fieldswap-delay || 0, 254 || Wait longer than usual to change field. Reduces sharpness. (Trilinear filtering??) ||
|- 
| --gs-uv-shift-pointsampling || 0, 1 || Can be used on games like manhunt that have issues with [https://github.com/PCSX2/pcsx2/issues/257#issuecomment-1140338680 UV light rendering] || --gs-uv-shift-pointsampling=1
|-
|-
| --gs-render-tile-threshold || 0, 3000000 |||| --gs-render-tile-threshold=300000
|AddLoginHook || ||
|-
|-
| --threaded-gs || 0, 1 || Multi-threaded-gs ? || --threaded-gs=1
|RemoveLoginHook || ||
|-
|-
| --gs-aspect-ratio || aspect/float (default=0.81) || || --gs-aspect-ratio=0.65
|AddLogoutHook || ||
|-
|-
| --gs-frontend-opt-mode || 0, 1, 2 || ? || --gs-frontend-opt-mode=1
|RemoveLogoutHook || ||
|-
| --gs-motion-factor || 25, 50 ||  || --gs-motion-factor=25
|-
|-
| --gs-scanout-delay || 0, 200 || || --gs-scanout-delay=200
|CheckEntitlement || ||
|-
|-
| --gs-check-trans-rejection || 0, 1  || Check transfer rejection ? || --gs-check-trans-rejection=1
|AddImageHook || ||
|-  
|-
| --gs-check-trans-rejection68 || 0, 1 || || --gs-check-trans-rejection68=1
|AddGifTagHook || ||
|-
|-
| --l2h-2d-params || TRXREG,BITBLTBUF,height || || --l2h-2d-params=0x0000000800000001,0x000000003a0a2300,512,2
|SwapMemCard || ||
|-
|-
| --gs-h2l-accurate-hash || 0, 1 ||  ||--gs-h2l-accurate-hash=1
|SetFormattedCard || emuObj.SetFormattedCard(<"file name">) || emuObj.SetFormattedCard("custom_formatted.card")
  Allow to bypass verify check?
|-
|-
|-style="background-color:#9042f5"
|OpenDiscTray || ||
|  || Aspect ratio || ||
|-
|-
| --gs-scanout-offsetx || relative offset/ignored || A zoom in setting in the x direction || --gs-scanout-offsetx=27
|CloseDiscTray || ||
|-
| --gs-scanout-offsety || relative offset/ignored || A zoom in setting in the y direction || --gs-scanout-offsety=27
|-
|-
| --safe-area-min || area/float (range 0.9 to 1.0) any other values outside of that range will be rejected by the emulator || An overscan setting|| --safe-area-min=0.9
|SwitchDisc || emuObj.SwitchDisc(<disc ID>) || ID can be provided as is, or for example read from memory or register when needed.
|-
|-
|-style="background-color:#FEA15C"
| EnableImposeMenu || emuObj.EnableImposeMenu(<true/false>) || EnableImposeMenu(false)
|  || Other || ||
|-
|-
| --framelimit-mode || slowest,slower,slow,normal,fast,fastest,turbo ||Standalone Framelimiter|| --framelimit-mode=fast
|GetDiscId || ||
|-
| --gs-hdr-support || 0, 1? || ? ||
|}
 
====IOP====
<pre>The emulated I/O Processor (IOP) settings. Commands here are rarely useful, as very few games will require them. The IOP controls the emulated DEV9, SPU2, USB, Memory cards, CDVD, Firewire, along with other input/output devices</pre>
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Values !! Notes !! Usage
|-style="background-color:#D7EF54"
|  || Game fixes || ||
|-
|-
| --iop-cycle-scalar ||<br>Accelerate IOP cycles: (0.99 => 0.1) <br>Decelerate IOP cycles: (1.1 => 5.0)|| '''Not a Speedhack'''. Accelerating can improve DVD reading speed|| --iop-cycle-scalar=1.0
|GetDiscTitleId || ||
|-
|-
| --iop-const-folding || None,Gpr,All || IOP constant folding [https://en.wikipedia.org/wiki/Constant_folding More info] || --iop-const-folding=All
|AddSectorReadHook || ||
|-
|-
| --iop-tight-slice-count || 0, 2000 || Seems to slow down the iop the higher the value, Can be used in games such as the godfather or gran turismo 4 to solve stuttering fmvs due to very fast iop cycles|| --iop-tight-slice-count=12
|AddMCWriteHook || ||
|-
|-
| --iop-hook || AdvanceClock, FastForwardClock || IOP native hook, Sony uses it on their official release of Red dead revolver || --iop-hook=0x0086ac,FastForwardClock
|ShowDiscSwitchInfo || ||
|-
|-
| --iop-block-validation || IsC, ShortHash, Hash || Way of validating that block been modified, and require recompilation. Other Possible values include PageProt, None, PageProtection || --iop-block-validation=IsC
|GetPs4SystemLang || ||
|-
|-
|-style="background-color:#FEA15C"
|SetPs2Lang || ||
|  || Other || ||
|-
|-
| --iop-validate-kernel || 0, 1 || ||  
|ThrottleNorm || ||
|-
|-
| --iop-shorthash-len || inst_count/integer || Length of shorthash in instruction/opcode count. Require --iop-block-validation=ShortHash ||  
|ThrottleFast || ||
|-
|-
| --iop-pc-coherency || 0, 1||  ||  
|ThrottleMax || ||
|-
|-
| --iop-inst-marking || 0, 1? || ||  
|AddAssertionHook || ||
|-
|-
| --detect-idle-iop || 0, 1 || Enabled by default. || --detect-idle-iop=0
| SetGsTitleFix || || [[PS2_Emulation#SetGsTitleFix|More info]]
|-
|-
| --iop-jit-disasm || || ||  
|SetDeinterlace || ||
|-
|-
| --iop-evt-check-full || 0, 1 ?|| ||  
|SetDisplayAspectWide || ||
|-
|-
|}
|SetDisplayAspectNormal || ||
 
====Misc====
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Values !! Notes !! Usage
|-
|-
| --idec-cycles-per-qwc || int/multiplier || Multiply how many cycles IDEC command take per whole currently worked on QWC. || --idec-cycles-per-qwc=768
|ForceRefreshRate || emuObj.ForceRefreshRate(<hz>) || emuObj.ForceRefreshRate(50) correct values are 0, 50, 60 where 0 = default.
|-
|-
| --mfifo-manual-drain || 0.1/5.0 || A command for changing the functionality of --ee-hook=0x0,Mfifodrain ||--mfifo-manual-drain=0.30
|LoadFsShader || || FragmentShader
|-
|-
| --mfifo-chunk-drain-cycles || 1/400000 || A command for changing the functionality of --ee-hook=0x0,Mfifodrain ||--mfifo-chunk-drain-cycles=210000
|SetDisplaySafeArea || ||
|-
|-
| --pcr0-delta-hack || 0.1 , 400000.0 || Modify delta of pcr0 when reading it from MFC0. Some games rely on good performance counters accuracy (Spyro ANB cutscenes), and since emulator don't implement most events, hack it is. || --pcr0-delta-hack=1.0
|PadSetLightBar || ||
|-
|-
| --jitproc-use-aslr || || Disables compiler process ASLR, useful for easier debugging, as the compiler process will be always on fixed address. Theoretically useful for mast1c0re, but to change it you need to be already in... || --jitproc-use-aslr=0
|emuAddPadHook || ||
|-
|-
| --detect-idle-intc ||0, 1|| Enabled by default, 0 disables it || --detect-idle-intc=0
|PadPressureStickRemap || ||
|-
|-
| --detect-idle-chcr|| 0, 1|| Enabled by default, 0 disables it  || --detect-idle-chcr=0
|SetVolumes || ||
|-
|-
| --rom || location of the bios that's inside of the fpkg || Could allow to use custom bios, though still not working || --rom="PS20220WD20050620.crack" or --rom="/roms/PS20220WD20050620.crack"
|GetVolumes || ||
|-
|-
| --cop2 || jit, trans || ? ||  
|SetAudioRoute || ||
|-
|-
| --vu0 || jit, trans || ? ||  
|GetAudioRoute || ||
|-
|-
| --r30 || jit, trans || ? ||  
|AddSnapshotLoadedHook || ||
|-
|-
|}
|RemoveSnapshotLoadedHook || ||
 
====PCSX2's gameindex====
<pre>PCSX2's commands on the PS4</pre>
 
<br>[https://raw.githubusercontent.com/PCSX2/pcsx2/master/bin/resources/GameIndex.yaml Current Gameindex.yaml]
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! {{cellcolors|#00d6f2|#000000}}PCSX2 !! {{cellcolors|#c300ff|#000000}}PS4 !! Notes
|-
|-
| XGKickHack ||--vu-xgkick-delay=0 || Limit is between
|IsNeoMode || ||
(0 => 31)
|-
|-
| VuAddSubHack ||--vu-hack-triace=1 || Required for every single game developed by TriAce
|IsToolingVerbose || ||
|-
|-
| vuClampMode: 2 ||--vu1-no-clamping=0<br>--vu0-no-clamping=0  ||
| emuMediaPatch || emuMediaPatch(disc sector, 12 + offset, { original data }, { replace data }) || Replace 4 bytes from loaded iso file
|-
|-
| vuClampMode: 3  || --vu1-no-clamping=1<br>--vu0-no-clamping=1 ||
! !! getIOPObject class !!
|-
|-
| vu0ClampMode: 2 || --vu0-no-clamping=0 ||
| getIOPObject || local iopObj = getIOPObject() || Required for all functions using iopObj, that include: <pre>ReplaceMem64 ReplaceMem32 ReplaceMem16 ReplaceMem8 ReadMemFloat
WriteMemFloat WriteMem64 WriteMem32 WriteMem16 WriteMem8
ReadMemStr AddHook RemoveHook GetGpr SetGpr GetPc SetPc
GetCPR0 SetCPR0 iopInsnReplace</pre>
|-
|-
| vu0ClampMode: 3 || --vu0-no-clamping=1 ||
|ReplaceMem64 || ||
|-
|-
| vu1ClampMode: 2 || --vu1-no-clamping=0 ||  
|ReplaceMem32 || ||
|-
|-
| vu1ClampMode: 3 || --vu1-no-clamping=1 ||
|ReplaceMem16 || ||
|-
|-
| eeClampMode: 2 || --fpu-no-clamping=0<br>--cop2-no-clamping=0 ||
|ReplaceMem8 || ||
|-
|-
| eeClampMode: 3  || --fpu-no-clamping=1<br>--cop2-no-clamping=1 ||
|ReadMemFloat || ||
|-
|-
| FpuNegDivHack<br>FpuMulHack || --fpu-accurate-muldiv=1 ||  
|WriteMemFloat || ||
|-
|-
| cpuCLUTRender: 1 || --gs-uv-shift-pointsampling=1 ||
| ReadMem64 || <pre>iopObj.ReadMem64(<iop memory offset>)</pre> ||  
|-
|-
| MTVUSpeedHack: 0 || --vu1=jit-sync || Some games will also require --vu1-mpg-cycles= to be between "6000 - 19000"
| WriteMem64 || <pre>iopObj.WriteMem64(<iop memory offset>, <data>)</pre> ||  
|-
|-
| mergeSprite<br>alignSprite || --gs-kernel-cl-up="up2x2simple" || Note: works similarly but not the equivalent
| ReadMem32 || <pre>iopObj.ReadMem32(<iop memory offset>)</pre> || Read 4 bytes from offset, examples: iopObj.ReadMem32(0x1198)
iopObj.ReadMem32(gp - 348)
|-
|-
| cpuSpriteRenderBW: 4 || --gs-opt-frbuff-switch=1 || Note: works similarly but not the equivalent
| WriteMem32 || <pre>iopObj.WriteMem32(<iop memory offset>, <data>)</pre> || Write 4 bytes to offset, example: iopObj.WriteMem32(0x89ac, 0x001b70f0)
|-
|-
| mipmap || --gs-use-mipmap=1  ||
| ReadMem16 || <pre>iopObj.ReadMem16(<iop memory offset>)</pre> || Read 2 bytes from offset, example: iopObj.ReadMem16(0x1198)
|-
|-
| autoFlush || --gs-flush-ad-xyz=safe || Possible values include always, safe, off, 0
| WriteMem16 || <pre>iopObj.WriteMem16(<iop memory offset>, <data>)</pre> || Write 2 bytes to offset, example: iopObj.WriteMem16(0x89ac, 0x70f0)
|-
|-
| VIF1StallHack || --vif1-instant-xfer=0 || If that doesn't work, the lua command eeObj.SchedulerDelayEvent("vif1.dma", 0x9000) might assist.
| ReadMem8 || <pre>iopObj.ReadMem8(<iop memory offset>)</pre> || Read 1 byte from offset, example: iopObj.ReadMem8(0x1198)
|-
|-
| wildArmsHack || --gs-kernel-cl-up="DarkCloud2" ||
| WriteMem8 || <pre>iopObj.WriteMem8(<iop memory offset>, <data>)</pre> || Write 1 byte to offset, example: iopObj.WriteMem8(0x89ac, 0xf0)
|-
|-
| deinterlace || --force-frame-blend=1 ||
|ReadMemStr || ||
|}
 
=== Emulators ===
Every emulator is programmed differently. Sometimes choosing the right emulator is the only way to fix a game. Emulators are not provided pre-installed on the ps4, they have to be unpacked from an official Sony made PS2CLASSICS pkg. This list includes the typical usage of those emulators.
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Emulator name !! Typical usage - Info !! API Version !! Similar emulators
|-style="background-color:#D7EF54"
|  || 2018 || ||
|-
|-
| The King of Fighters '98: Ultimate Match || The only known emulator where '''Mojin-ribbon''' is playable. Commonly known as "KOF98"|| 2.0 ||
|AddHook || ||
|-
|-
|-style="background-color:#D7EF54"
|RemoveHook || ||
|  || 2017 || ||
|-
|-
| Jak and Daxter: The Precursor Legacy || Good compatibility with most ps2 games. It has a very high api version which means more LUA commands are supported. In addition, Jak emus are one of the few emus that can use the '''--gs-adaptive-frameskip=1''' command. It is often referred to as "Jak v2"|| 2.2 || '''JakX,''' '''Jak 2,''' '''Jak 3,'''
|GetGpr || ||
|-
|-
| Art of Fighting Anthology || Similar to RECVX. It was successful in fixing "'''Coraline'''." Sometimes called "AOFA" || 2.0 ||
|SetGpr || ||
|-
|-
| Resident Evil – Code: Veronica || Fixes games like '''Jackie chan Adventures, SpongeBob SquarePants: Creature From the Krust Krab, Pac-man World 3, Yu-Gi-Oh: Capsule monsters, SpongeBob's Atlantis SquarePantis''' freezing at a black/splash screen. Additionally, it fixes many games requiring '''OPL's mode 2'''. Often referred to as "RECVX" || 1.7 || '''Fatal Fury,''' '''Redfaction,''' '''AOFA.'''
|GetPc || ||
|-
|-
| Fatal Fury Battle Archives: Volume 2 || The emulator with the closest VU0-EE sync on the PS4; setting eecyclescalar to 5 on this emulator will enable some VU0 sync demanding games to run on the PS4. ||  ||
|SetPc || ||
|-style="background-color:#D7EF54"
|  || 2016 || ||
|-
|-
| Redfaction || It is prominently used to fix games that are VU1 sensitive. It was used to fix '''Tony Hawk games''' suddenly crashing, and to fix MTVU sensitive games such as '''Star Wars Battlefront II'''.|| 1.6 || '''Max payne'''
|GetCPR0 || ||
|-
|-
| Forbidden Siren || The only emulator that was able fix '''Ice age 2''' being stuck at splash screen by using it in conjunction with patches. It also fixed '''Gran turismo 4''' running EXTREMELY slow. || 0.1 ||
|SetCPR0 || ||
|-
|-
| King of Fighters 2000 || Seemingly the emulator with closest VU0-EE sync on the PS4. Fixes graphical issues and sps in games such as '''Crash Twinsanity''', '''Rayman 3''', '''Crazy Frog Racer''', and '''prevents Koei tecmo games from suddenly freezing when battle starts. Likely the only emulator where '''Batman Begins''' does not crash.''' Often referred to as "KOF2000"|| 1.2 || '''Roguev1''', '''KOF98''', '''Okage'''
| iopInsnReplace || iopInsnReplace(IOP memory offset, Original opcode (BE), Replace opcode (BE)) || Replace 4 bytes opcode in iop memory, correct memory range is 0x0 to 0x1FFFFF
|-
|-
| Destroy All Humans! || Fixed '''Tenchu: Fatal Shadows''' crashing. || 0.1 ||
! !! getEEObject class !!
|-
|-
| Destroy All Humans! 2 || || 0.7 ||  
| getEEObject || local eeObj = getEEObject() || Required for all functions using eeObj
|-
|-
| Rise of the Kasai || Fixed most of the '''Harry potter''' games. Often referred to as "rotk"|| 0.2 ||
|ReplaceMem64 || ||
|-
|-
|-style="background-color:#D7EF54"
|ReplaceMem32 || ||
|  || 2015 || ||
|-
|-
|War of the monsters v1 || The emulator that's used in PS2CLASSICSGUI, and the best one around for GS/GIF accuracy. || 0.1 || '''Rogue v1 and v2, Arc the Lad, Star Wars Jedi Starfighter'''
|ReplaceMem16 || ||
|-
|-
| GTA 3 || Fixed the pal version of '''Genji: Dawn of the Samurai''' || 0.6 ||
|ReplaceMem8 || ||
|-
|-
| Parappa 2 || The only emulator that was able to boot '''Spyro: A Hero's Tail''' || 0.1 ||
|ReadMemFloat || ||
|-
|-
| Star Wars Racer Revenge || Seems to be the most similar emulator to the ps3. Useful for debugging games as it also shows useful information such as pagefault || 0.4 ||  
|WriteMemFloat || ||
|-
|-
|}
|ReadMem128 || ||
 
=== XXXX-YYYYY_config.lua ===
 
<br>It is the most powerful configuration on the emulator, it allows for direct patching of EE/IOP/VU memory, hooks registers, hook dma. Almost Everything can be done here.
<br>If needed it can hook registers by using register names from alias files. Alias files (ee-cpr0-alias.lua, ee-gpr-alias.lua, ee-hwaddr.lua) are stored in lua_include folder, and can be included to config by using require ( "alias file name" ).
<br> [[PS2_PS4_LUA|Examples]]
<br>'''Known functions:
'''
Require cleanup.
====ApiRequest====
<pre>The most important part of the lua. The lua will crash the game if it were used without it. </pre>
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Usage !! Notes
|-
|-
| apiRequest || apiRequest(0.1) || apiRequest(<api version>)
|ReadMemFloat128 || ||
Different emu versions support different highest api.
Calling api is mandatory. some commands require higher version. Highest known version is 2.3 api from JAK 2,3,X game emulator.
|-
|-
|}
|WriteMem128 || ||
=====(Emulator) EmuObject=====
<pre> Commands for the emulator</pre>
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Usage !! Notes
|-style="background-color:#D7EF54"
|  || Object calling class ||
|-
|-
| getEmuObject || local emuObj = getEmuObject() || Required for all functions using emuObj, that include: <div align="left"><pre>LoadConfig SaveConfig GetPad AddVsyncHook
|WriteMemFloat128 || ||
RemoveVsyncHook AddEntryPointHook RemoveEntryPointHook
AddLoginHook RemoveLoginHook AddLogoutHook RemoveLogoutHook
CheckEntitlement AddImageHook AddGifTagHook SwapMemCard
SetFormattedCard OpenDiscTray CloseDiscTray SwitchDisc
EnableImposeMenu GetDiscId GetDiscTitleId
AddSectorReadHook AddMCWriteHook ShowDiscSwitchInfo GetPs4SystemLang SetPs2Lang
ThrottleNorm ThrottleFast ThrottleMax AddAssertionHook
SetGsTitleFix SetDeinterlace SetDisplayAspectWide SetDisplayAspectNormal
ForceRefreshRate LoadFsShader SetDisplaySafeArea PadSetLightBar
AddPadHook PadPressureStickRemap SetVolumes GetVolumes
SetAudioRoute GetAudioRoute AddSnapshotLoadedHook
RemoveSnapshotLoadedHook IsNeoMode IsToolingVerbose emuMediaPatch </pre></div>
|-style="background-color:#c6ecd9"
|  || Hooks ||
|-
|-
|AddVsyncHook || emuObj.AddVsyncHook(<task to be done every vsync>) || emuObj.AddVsyncHook(my_function)
| ReadMem64 || <pre>eeObj.ReadMem64(<ee memory offset>)</pre> ||  
my_function can be anything, from simple patches, to extensive hook.
Example usage can be found in SLUS-21550 features file. some games are not compatible with it and will crash upon startup.
|-
|-
|RemoveVsyncHook || emuObj.RemoveVsyncHook(<previously added task to be removed>) || emuObj.RemoveVsyncHook(my_function)
| WriteMem64 || <pre>eeObj.WriteMem64(<ee memory offset>, <data>)</pre> ||  
|-
|-
|AddEntryPointHook || emuObj.AddEntryPointHook(<task>) || Task to be done at ps2 game main elf entry point (right where game is loaded).
| ReadMem32 || <pre>eeObj.ReadMem32(<ee memory offset>)</pre> || Read 4 bytes from offset, examples: eeObj.ReadMem32(0x100198)
eeObj.ReadMem32(gp - 31348)
|-
|-
|RemoveEntryPointHook || ||
| WriteMem32 || <pre>eeObj.WriteMem32(<ee memory offset>, <data>)</pre> || Write 4 bytes to offset, example: eeObj.WriteMem32(0x2c89ac, 0x001b70f0)
|-
|-
|AddLoginHook || ||
| ReadMem16 || <pre>eeObj.ReadMem16(<ee memory offset>)</pre> || Read 2 bytes from offset, example: eeObj.ReadMem16(0x100198)
|-
|-
|RemoveLoginHook || ||
| WriteMem16 || <pre>eeObj.WriteMem16(<ee memory offset>, <data>)</pre> || Write 2 bytes to offset, example: eeObj.WriteMem16(0x2c89ac, 0x70f0)
|-
|-
|AddLogoutHook || ||
| ReadMem8 || <pre>eeObj.ReadMem8(<ee memory offset>)</pre> || Read 1 byte from offset, example: eeObj.ReadMem8(0x100198)
|-
|-
|RemoveLogoutHook || ||
| WriteMem8 || <pre>eeObj.WriteMem8(<ee memory offset>, <data>)</pre> || Write 1 byte to offset, example: eeObj.WriteMem8(0x2c89ac, 0xf0)
|-
|-
|AddImageHook || ||
|ReadMemStr || ||
|-
|-
|AddGifTagHook || ||
| AddHook || eeObj.AddHook(<ee offset>, <original opcode>, <definied hook name>) || example: <pre>local W1 =
function()
emuObj.SetDisplayAspectNormal()
end
 
local ws1 = eeObj.AddHook(0x1c9840, 0xaf808c78, W1)</pre>
|-
|-
| AddSectorReadHook || emuObj.AddSectorReadHook(<sector, unk, task>) || Hook to do task when disc image sector is read. Not all values are known (ex. emuObj.AddSectorReadHook(776480, 32, <task/function>) )
|RemoveHook || ||  
|-
|-
|AddMCWriteHook ||emuObj.AddMCWriteHook() ||
|AddPreHook || ||
|-
|-
|AddAssertionHook ||emuObj.AddAssertionHook() ||
|RemovePreHook || ||
|-
|-
|AddSnapshotLoadedHook || ||
|RemovePostHook || ||
|-
|-
|RemoveSnapshotLoadedHook || ||
|GetGpr64 || ||
|-
|-
|AddPadHook ||emuObj.AddPadHook() ||
|SetGpr64 || ||
|-
|-
|-style="background-color:#ff8080"
| GetGprFloat || || Get gpr value as float value
| || Audio ||  
|-
|-
|SetVolumes || emuObj.SetVolumes('global', 'main', 'bgm') || Set volume, usually setting global is enough. Example: emuObj.SetVolumes(0.31, 1.0, 1.0) values, in floats 1.0 = 100%
| SetGprFloat || || Set gpr value as float value
|-
|-
|GetVolumes || emuObj.GetVolumes() || Return current volume levels for ('global', 'main', 'bgm') in floating point values.
|GetGpr / GetGPR || eeObj.GetGPR(<gpr register>) || eeObj.GetGPR(t3)
|-
|-
|SetAudioRoute || ||
|SetGpr / SetGPR || eeObj.SetGPR(<gpr register> ,<value>) || example: eeObj.SetGPR(gpr.a3 ,1)
Require defined getEEObject() as eeObj
|-
|-
|GetAudioRoute || ||
| GetFprHex || || Get floating point register value as hex string
|-style="background-color:#c2c2d6"
|  || Game loading speed ||
|-
|-
|ThrottleNorm ||emuObj.ThrottleNorm() || Enable default framelimiter (50/60 fps depend on region).
| SetFprHex || || Set floating point register value as hex string
|-
|-
|ThrottleFast || emuObj.ThrottleFast() || Faster than default, but exact value is unknown.
| GetFpr / GetFPR || eeObj.GetFpr(<register number>) || example eeObj.GetFpr(14)
|-
|-
|ThrottleMax || emuObj.ThrottleMax() || Disable framelimiter during loading screens.  
| SetFpr / SetFPR || eeObj.SetFpr(<fpr register number>, <value>) || Simple example eeObj.SetFpr(14, 50.0) will set frp 14 to 50.0
|-style="background-color:#ffe680"
But we can also combine commands to add/sub from registers
|  || CDVD ||
eeObj.SetFpr(14, eeObj.GetFpr(14) + 50.0) this will add 50.0 to current fpr 14 value
|-
|-
|OpenDiscTray || ||
|GetPc || ||
|-
|-
|CloseDiscTray || ||
|SetPc || ||
|-
|-
|SwitchDisc || emuObj.SwitchDisc(<disc ID>) || ID can be provided as is, or for example read from memory or register when needed.
|GetCPR0 || eeObj.GetCPR0(<COP0 register>) ||  
|-
|-
| GetDiscId || emuObj.GetDiscId() || Return DiscId in XXXX_YYY.ZZ format
|SetCPR0 || eeObj.SetCPR0(<COP0 register>) ||  
|-
|SchedulerDelayEvent || || values? gif.dma,  vif0.dma,  vif1.dma,  sif0.dma,  sif1.dma,  ipu0.dma,  ipu1.dma
|-
|-
| GetDiscTitleId || ||
|DmaAddHook || ||
|-
|-
|ShowDiscSwitchInfo ||emuObj.ShowDiscSwitchInfo() ||
|DmaRemoveHook || ||
|-
|-
|-style="background-color:#FEA15C"
|WaitVu1 || ||
| || Other ||  
|-
|-
| EnableImposeMenu || emuObj.EnableImposeMenu(<true/false>) || EnableImposeMenu(false)
|Vu1MpgCycles || ||
|-
|-
|LoadConfig || ||
|GetPcRingBuffer || ||
|-
|-
|SaveConfig || ||
|WriteMemStr || ||
|-
|-
|GetPad || emuObj.GetPad(<gamepad button by bits>)|| example usage for reading input:
|FastForwardClock || ||
<div align="left"><pre>local CheckInputs = function()
 
local pad_bits = emuObj.GetPad()
local UP = pad_bits &  0x0010
local DOWN = pad_bits &  0x0040
local LEFT = pad_bits &  0x0080
local RIGHT = pad_bits &  0x0020
local Triangle = pad_bits &  0x1000
local Cross = pad_bits &  0x4000
local Square = pad_bits &  0x8000
local Circle = pad_bits &  0x2000
local L1 = pad_bits &  0x0400
local L2 = pad_bits &  0x0100
local L3 = pad_bits &  0x0002
local R1 = pad_bits &  0x0800
local R2 = pad_bits &  0x0200
local R3 = pad_bits &  0x0004
local Select = pad_bits &  0x0001
local Start = pad_bits &  0x0008
 
if (L2 ~= 0) then
<here function that should be done when L2 is pushed>
end
end
 
emuObj.AddVsyncHook(CheckInputs) <to trigger check at every vsync></pre></div>
|-
|-
|SwapMemCard || ||
|AdvanceClock || ||
|-
|-
|SetFormattedCard || emuObj.SetFormattedCard(<"file name">) || emuObj.SetFormattedCard("custom_formatted.card")
|WriteMemStrZ || ||
Allow to use custom memory card.
|-
|-
| GetPs4SystemLang || emuObj.GetPs4SystemLang() || Return PS4 system language (in unknown format).
|Precompile || ||
|-
|-
| SetPs2Lang || emuObj.SetPs2Lang(<Lang ID>) || Set emulated PS2 language, correct Lang IDs are 0-18. In some cases, games will hang on a black screen with some other language settings (eg Japanese) - Example for usage: emuObj.SetPs2Lang(1)
|CalcInsnHash || ||
<div align="left"><pre>0 - japanese
1 - english
2 - french
3 - spanish
4 - german
5 - italian
6 - dutch
7 - portuguese
8 - russian
9 - korean
10 - traditonal-chinese
11 - simplified-chinese
12 - finnish
13 - swedish
14 - danish
15 - norwegian
16 - polish
17 - portuguese-brazil
18 - english-uk</pre></div>
|-
|-
|PadSetLightBar || emuObj.PadSetLightBar(<port, red, green, blue>) || Set DS4 light bar color. The correct port values are 0-3, correct light values are 0-255.
|AddJitResetHook || ||
|-
|-
|PadPressureStickRemap || emuObj.PadPressureStickRemap()||
|RemoveJitResetHook || ||
|-
|-
| IsNeoMode || emuObj.IsNeoMode() || Check that PS4 run in NEO (PRO) mode. Return 1/0
|getOverlayObject || || local eeOverlay = eeObj.getOverlayObject()
|-
|-
| IsToolingVerbose || ||
| GetVif1Cycles || eeObj.GetVif1Cycles() || local vif1_cycles = eeObj.GetVif1Cycles() create vif_cycles value that can be used later, you can rename it as you wish.
|-
|-
|CheckEntitlement || ||
! !! getGLSObject class !!
|-
|-
| emuMediaPatch || emuMediaPatch(disc sector, 12/24 + offset, { original data }, { replace data }) || Replace 4 bytes from loaded iso file. For unknown reason we always need to add 12 to real offset for DVD game, and 24 for CD game.
| getGLSObject || ||  
|-style="background-color:#c6ecd9"
|  || GS related ||
|-
|-
| CountFrameOnPS2 || emuObj.CountFrameOnPS2() || updates FRAPS/Actual FPS reading in olympus
|Enable || ||
|-
|-
| SetGsTitleFix || emuObj.SetGsTitleFix() || [[PS2_Emulation#SetGsTitleFix|More info]]
|EnableServerRecording || ||  
|-
|-
|SetDisplayAspectWide || emuObj.SetDisplayAspectWide() || Force display area to 16:9 (If game not support widescreen, it will be stretched).
|Pause || ||  
|-
|-
|SetDisplayAspectNormal || emuObj.SetDisplayAspectNormal() || Force display area to 4:3.
! !! getGsObject class !!
|-
|-
|ForceRefreshRate || emuObj.ForceRefreshRate(<hz>) || emuObj.ForceRefreshRate(50) correct values are 0, 50, 60 where 0 = default.
| getGsObject || local gsObj = getGsObject() ||  
|-
|-
|LoadFsShader || emuObj.LoadFsShader(<slot?>, "<path>") || <div align="left"><pre>Shaders must be loaded right after GS has been initialized.
|SetL2HMode || ||
Example:
Global_InitGpuResources = function()
emuObj.LoadFsShader(1, "./shader.sb")
end
 
That only load Fragment Shader to program memory, to use it we need BindFragmentShader,
and if depend on shader SetShaderParams.</pre></div>
|-
|-
|SetDisplaySafeArea || ||
|SetUprenderMode || ||
|-
|-
|}
|SetUpscaleMode || ||
 
=====(EE) EEObject=====
<pre>Commands for the emulated Emotion Engine</pre>
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Usage !! Notes
|-style="background-color:#D7EF54"
|  || Object calling class ||
|-
|-
| getEEObject || local eeObj = getEEObject() || Required for all functions using eeObj
|GetFramesInQueue || ||
|-style="background-color:#7698FF"
|  || Memory editing ||  
|-
|-
|ReplaceMem64 || eeObj.ReplaceMem64(<address>, <value>)||
|SetFrameSkipping || ||
|-
|-
|ReplaceMem32 || eeObj.ReplaceMem32(<address>, <value>) || Permanently replace an offset without needing addvsynchook?
|SetDeinterlaceShift || || gsObj.SetDeinterlaceShift(0)
|-
|-
|ReplaceMem16 || eeObj.ReplaceMem16(<address>, <value>)||
! !! getAudioObject class !!
|-
|-
|ReplaceMem8 ||eeObj.ReplaceMem8(<address>, <value>) ||
| getAudioObject || ||  
|-
|-
|ReadMemFloat || eeObj.ReadMemFloat(<address>) || eeObj.ReadMemFloat(0x258c3c)
| muteStreamingAll || ||  
|-
|-
|WriteMemFloat || eeObj.WriteMemFloat(<address>, <value>) || eeObj.WriteMemFloat(0x365364, 1.3333333)
| muteStreamingMain || ||  
|-
|-
|ReadMem128 || <pre>eeObj.ReadMem128(<ee memory offset>)</pre> || Read 16 bytes from offset, examples: eeObj.ReadMem128(0x100198)
| muteStreamingBGM || ||  
|-
|-
|ReadMemFloat128 || <pre>eeObj.ReadMemFloat128(<ee memory offset>)</pre> || return 16 bytes from offset in float form
! !! getRemotePlayObject class !!
|-
|-
|WriteMem128 || ||
| getRemotePlayObject || ||  
|-
|-
|WriteMemFloat128 || ||
| Enable || ||  
|-
|-
| ReadMem64 || <pre>eeObj.ReadMem64(<ee memory offset>)</pre> || Read 8 bytes from offset, examples: eeObj.ReadMem64(0x100198)
! !! getVideoRecordingObject class !!
|-
|-
| WriteMem64 || <pre>eeObj.WriteMem64(<ee memory offset>, <data>)</pre> ||  
| getVideoRecordingObject || ||
|-
|-
| ReadMem32 || <pre>eeObj.ReadMem32(<ee memory offset>)</pre> || Read 4 bytes from offset, examples: eeObj.ReadMem32(0x100198)
| Enable || ||  
eeObj.ReadMem32(gp - 31348)
|-
|-
| WriteMem32 || <pre>eeObj.WriteMem32(<ee memory offset>, <data>)</pre> || Write 4 bytes to offset, example: eeObj.WriteMem32(0x2c89ac, 0x001b70f0)
! !! getSharePlayObject class !!
|-
|-
| ReadMem16 || <pre>eeObj.ReadMem16(<ee memory offset>)</pre> || Read 2 bytes from offset, example: eeObj.ReadMem16(0x100198)
| getSharePlayObject || ||  
|-
|-
| WriteMem16 || <pre>eeObj.WriteMem16(<ee memory offset>, <data>)</pre> || Write 2 bytes to offset, example: eeObj.WriteMem16(0x2c89ac, 0x70f0)
| Enable || ||  
|-
|-
| ReadMem8 || <pre>eeObj.ReadMem8(<ee memory offset>)</pre> || Read 1 byte from offset, example: eeObj.ReadMem8(0x100198)
! !! getSpriteObject group  !!
|-
|-
| WriteMem8 || <pre>eeObj.WriteMem8(<ee memory offset>, <data>)</pre> || Write 1 byte to offset, example: eeObj.WriteMem8(0x2c89ac, 0xf0)
|getSpriteObject || ||
|-
|-
|ReadMemStr || eeObj.ReadMemStr(address/register) || Read string from address until null terminator
|Enable || ||
|-
|-
|WriteMemStr || eeObj.WriteMemStr(address, string) ||  
|Disable || ||
|-
|-
|WriteMemStrZ || || eeObj.WriteMemStrZ(string pointer, string) .  Pointer can be read from GPR
|BindFragmentShader || ||
|-style="background-color:#ff9999"
|  || GPR require (Necessary for register related commands)||  
|-
|-
| || local gpr = require( "ee-gpr-alias" )
|SetShaderParams || ||
|-
|-
|GetGpr64 || eeObj.GetGPR64(<gpr register>) || example: eeObj.GetGPR64(t3)
|BindTexture || ||
|-
|-
|SetGpr64 || ||
|SetPosXY || ||
|-
|-
| GetGprFloat || || Get gpr value as float value
|SetSizeXY || ||
|-
|-
| SetGprFloat || || Set gpr value as float value
|SetPosUV || ||
|-
|-
|GetGpr || eeObj.GetGPR(<gpr register>) || eeObj.GetGPR(t3)
|SetSizeUV || ||
|-
|-
|SetGpr|| eeObj.SetGPR(<gpr register> ,<value>) || example: eeObj.SetGPR(gpr.a3 ,1)
|PrintContext || ||
Require defined getEEObject() as eeObj
|-
|-
| GetFprHex || eeObj.GetFprHex(<FPU register (0-31)>)|| Get/return floating point register value as hex string
|SetBlendColor || ||
|-
|-
| SetFprHex || eeObj.SetFprHex(<FPU register (0-31), value (u32)>)|| Set floating point register value as hex string
! !! Not require Obj call group, or unknown !!
|-
|-
| GetFpr || eeObj.GetFpr(<register number>) || example eeObj.GetFpr(14)
| apiRequest || apiRequest(<api version>) || example: apiRequest(0.1)  
Different emu versions support different highest api.
Calling api is mandatory. some commands require higher version.
|-
|-
| SetFpr  || eeObj.SetFpr(<fpr register number>, <value>) || Simple example eeObj.SetFpr(14, 50.0) will set frp 14 to 50.0
| eeInsnReplace || eeInsnReplace(EE memory offset, Original opcode (BE), Replace opcode (BE)) || Replace 4 bytes opcode in ee memory, correct memory range is 0x0 to 0x1FFFFFFF
But we can also combine commands to add/sub from registers
eeObj.SetFpr(14, eeObj.GetFpr(14) + 50.0) this will add 50.0 to current fpr 14 value
|-
|-
|GetPc || eeObj.GetPc() ||This command is very helpful as it will return to you the current EE address that's being read. Can be used also with additional var. like eeObj.GetPc()+4
| vuInsnReplace || <pre>vuInsnReplace(0, vu memory offset (original opcode<<32) | original opcode, (replace opcode<<32) | replace opcode) </pre>|| Replace 2x 4 bytes in vu memory, correct memory range is unknown (depend on unit 4kb or 16kb) First 0 select vu? Command will fail if size is above 254.  
|-
|-
|SetPc || eeObj.SetPC(<PC>) ||eeObj.SetPC(0x266B80)
| eeNativeFunction || eeNativeFunction(<ee offset>, <original opcode>, <function>) || eeNativeFunction(0x11fa9c, 0x0080402d, 'memcpy')
Different emulators can have different functions included, vide SO3. Require api 1.4 or higher.
But memcpy, and memset should be in all emus.
|-
|-
|GetCPR0 || eeObj.GetCPR0(<COP0 register>) ||  
| eeNativeHook || eeNativeHook(<ee ofset>, <original opcode>, <action>) || eeNativeHook require apiRequest(1.4) or higher.
|-
|-
|SetCPR0 || eeObj.SetCPR0(<COP0 register>) ||
| GsCustomShader || ||  
|-style="background-color:#c6ecd9"
|  || Hooks ||
|-
|-
| AddHook || eeObj.AddHook(<ee offset>, <original opcode>, <definied hook name>) || example: <div align="left"><pre>local W1 =
| getTrophyObject || local trophyObj = getTrophyObject() || Required for all functions using trophyObj
function()
emuObj.SetDisplayAspectNormal()
end
 
local ws1 = eeObj.AddHook(0x1c9840, 0xaf808c78, W1)</pre></div>
|-
|-
|RemoveHook || ||  
| getDmaObject || local dmaObj = getDmaObject() || Depreciated API - use EE:DmaAddHook / EE:DmaRemoveHook instead. Is not clear when it was depreciated, JAK emu don't use it.
|-
|-
|AddPreHook || ||
| Unlock || ||  
|-
|-
|AddPostHook || ||
| getScreenShotObject || ||  
|-
|-
|RemovePreHook || ||
| IsUnlocked || ||  
|-
|-
|RemovePostHook || ||
| InsnOverlay || InsnOverlay({<opcode, opcode, opcode...>}) || example: <pre align="left">InsnOverlay({
|-
0x27bdfff0, -- addiu $sp, -0x10
|AddJitResetHook || ||
0xffbf0000, -- sd $ra, 0(sp)
|-
0xffb00008, -- sd $s0, 8(sp)
|RemoveJitResetHook || ||
0x3c05000f, -- lui $a1, 0x000f
|-
0x34a57000, -- ori $a1, 0x7000
| AddHookJT || eeObj.AddHookJT(Offset, offset opcode, function) || Seems be a hook related to the jit
0x0c0db8b6, -- jal Script::State::DoString
0x0080802d, -- move $s0, $a0
0x24050001, -- li $a1, 1
0x0c0dba4c, -- jal Script::State::IsNull(int)
0x0200202d, -- move $a0, $s0
0xdfb00008, -- ld $s0, 8(sp)
0xdfbf0000, -- ld $ra, 0(sp)
0x03e00008, -- jr ra
0x27bd0010  -- addiu $sp, 0x10
})</pre>
|-
|-
|-style="background-color:#ffb3b3"
| eeDebugBreak || ||  
| || Dma ||  
|-
|-
|DmaAddHook || <pre>eeobj.DmaAddHook(channel=%d key=%x)</pre> || Possible Dma channel numbers (?)
| CsBindShader || ||  
<pre> GIF = 0 VIF0 = 1
VIF1 = 2 SIF0 = 4
SIF1 = 5 IPU0 = 6
IPU1 = 7  </pre>
Possible values for hooks
<pre>DmaTransfer [VIF0/VIF1], RaiseIntc [VIF0/VIF1], NormalTransfer [SIF0/SIF1]. </pre>
|-
|-
|DmaRemoveHook || ||
| CsSetParamInt32 || ||  
|-
|-
|-style="background-color:#b3f0ff"
| CsSetParamFloat || ||  
| || Speedhacks ||  
|-
|-
|FastForwardClock || eeObj.FastForwardClock() || Skip Emotion Engine cycles?
| CsResetContext || ||  
|-
|-
|AdvanceClock || eeObj.AdvanceClock() || it is still unknown how to use this command. Check Psychonauts lua for more details.
| CsPrintContext || ||  
|-
|-
| GetClock || eeObj.GetClock() || Returns the value of how many cycles the EE is ahead of normal clock (?)
| PsBindShader || ||  
|-
|-
|Vu1MpgCycles || eeObj.Vu1MpgCycles(<cycles>) || Works just like the cli command --vu1-mpg-cycles=
| PsSetParamInt32 || ||  
|-style="background-color:#FEA15C"
|  || Other ||  
|-
|-
| CallPredicate
| PsSetParamFloat || ||
|-
|-
|SchedulerDelayEvent || eeObj.SchedulerDelayEvent("event", cycles)<br>Example:<br>eeObj.AddHook(0x0033A4DC,0xAC430000, function() eeObj.SchedulerDelayEvent("gif.dma", 0x10500) end) || Parrapa use eeObj.SchedulerDelayEvent("vif1.dma", 0x6500) other events are gif.dma, vif0.dma, vif1.dma, sif0.dma, Sif0-NormalTransfer, sif1.dma, Sif1-NormalTransfer, ipu0.dma, ipu1.dma . This command allows for the delayment of certain DMA transfer by cycles.
| PsResetContext || ||  
|-
|-
|WaitVu1 || eeObj.WaitVu1() || Likely to be the lua equivalent of "--vu1=jit-sync".
| PsPrintContext || ||  
|-
|GetPcRingBuffer || ||
|-
|Precompile || || Requires unknown values
|-
|CalcInsnHash || ||
|-
|getOverlayObject || eeObj.getOverlayObject() || local eeOverlay = eeObj.getOverlayObject()
|-
| GetVif1Cycles || eeObj.GetVif1Cycles() || local vif1_cycles = eeObj.GetVif1Cycles() create vif_cycles value that can be used later. You can rename it as you wish.
|-
|-
|}
|}
======SetGsTitleFix======


<pre>One of the most important commands in lua, allows to change the GS's behavior.
====Registers for hook====
Part of EmuObject() class. Used frequently in official configs.</pre>
Registers defined in alias files.  
'''Examples'''
 
<pre>
'''GetGpr/SetGpr
-- fix vision logo (Wild Arms 3)
'''
local thresholdArea = 0 -- ignore alls items : fix #112276
<pre>gpr.zero gpr.at
emuObj.SetGsTitleFix( "ignoreUpRender", thresholdArea , { texType = 3, cbp = 0x2390, tbp = 0x288000} )
gpr.v0 gpr.v1
------------------------------------------------------------------------------------------------------
gpr.a0 gpr.a1 gpr.a2 gpr.a3
-- Ignore up-render shift for triangles when writing mask = write alpha only . Will fix shadows (bug# 6724).
gpr.t0 gpr.t1 gpr.t2 gpr.t3
emuObj.SetGsTitleFix( "ignoreUpShiftTri", "reserved" , { fbmask = 0x00FFFFFF } )
gpr.t4 gpr.t5  gpr.t6  gpr.t7
------------------------------------------------------------------------------------------------------
gpr.s0  gpr.s1 gpr.s2  gpr.s3
-- Performance fix ( bug# 9474 )
gpr.s4  gpr.s5 gpr.s6 gpr.s7
if 0 then  -- emuObj.IsNeoMode() then -- neo mode check disabled, due to bug #10442
gpr.t8 gpr.t9
    emuObj.SetGsTitleFix( "globalSet", "reserved", { workLoadThreshold = 125000} )
gpr.k0 gpr.k1
else
gpr.gp gpr.sp  gpr.fp  gpr.ra
    emuObj.SetGsTitleFix( "globalSet", "reserved", { workLoadThreshold = 100000} )
gpr.lo  gpr.hi  gpr.sa
end
------------------------------------------------------------------------------------------------------
-- bug# 9972
emuObj.SetGsTitleFix( "ignoreSubBuffCov", "reserved", { } )
------------------------------------------------------------------------------------------------------
-- Bully bug 9392
-- Performace fix
local thresholdArea = 600
emuObj.SetGsTitleFix( "ignoreUpRender", thresholdArea , {alpha=0x80000044 , zmsk=1 , tw=4, th=4 } )
------------------------------------------------------------------------------------------------------
-- Bug#9174 -
emuObj.SetGsTitleFix( "ignoreSubBuffCov", "reserved", { } )
------------------------------------------------------------------------------------------------------
-- Bug#9240 (Light maps uprender)
-- Copy z-buffer for future use with light maps. psm = SCE_GS_PSMZ24 (49)
emuObj.SetGsTitleFix( "forceSimpleFetch", "reserved", {tw=9, th=9, psm=49, zmsk=1 } )
------------------------------------------------------------------------------------------------------
-- Apply light maps texMode=2 (bilinear)  psm= SCE_GS_PSMCT32 (0)
emuObj.SetGsTitleFix( "forceSimpleFetch", "reserved", {tw=8, th=8, psm=0, ztst=1, texMode=2 } )
------------------------------------------------------------------------------------------------------
-- Performace fix (bug #9785 )
emuObj.SetGsTitleFix( "globalSet", "reserved", { waveThreshold = 90000} )
emuObj.SetGsTitleFix( "ignoreAreaUpdate", 0, { } )
------------------------------------------------------------------------------------------------------
-- Accumulate fill area only when conditions are met
emuObj.SetGsTitleFix( "includeAreaUpdate", "reserved" , {alphaIsNot = 0, zmsk = 1, tw = 6, th = 6 , tbp = 0x00302000} )
emuObj.SetGsTitleFix( "ignoreUpRender", 130 , { totalArea= 700} )
------------------------------------------------------------------------------------------------------
-- Fix shadow
emuObj.SetGsTitleFix( "forceSimpleFetch", "reserved", { texMode=1 } )
------------------------------------------------------------------------------------------------------
-- Reduce flush count
emuObj.SetGsTitleFix( "SetSelfRender", "reserved", { fbmask= 0x00FFFFFF , renderSelf=1 , zmsk=1 , alpha=0 , texMode=1 } )
------------------------------------------------------------------------------------------------------
-- Disable post-processing
emuObj.SetGsTitleFix( "ignoreSprite", "reserved", { texType=1 , tw=5 , th=8, zmsk=1 , alpha=0x80000044  } )
------------------------------------------------------------------------------------------------------
-- Small triangle rejection. Works in conjunction with CLI setting  gs-override-small-tri-area=1
-- keep default area for texture 256x256 ( no blend) (Anakin face)
emuObj.SetGsTitleFix( "setRejectionArea", 500,{twIsNot=8, thIsNot=8 } )
------------------------------------------------------------------------------------------------------
-- Set triangle rejection area= 1000 when alpha blend is not 0 ( i.e blend is On)
emuObj.SetGsTitleFix( "setRejectionArea", 1000, {alphaIsNot=0 } )
------------------------------------------------------------------------------------------------------
-- Performace fix
local thresholdArea = 600
emuObj.SetGsTitleFix( "ignoreUpRender", thresholdArea , {alpha=0x80008068 , zmsk=1 } )
------------------------------------------------------------------------------------------------------
-- Performace fix
local thresholdArea = 700
emuObj.SetGsTitleFix( "ignoreUpRender", thresholdArea , {alpha=0x80000044 , zmsk=1 } )
------------------------------------------------------------------------------------------------------
-- Disable uprender on the draw command which samples the framebuffer (0x3200) using bilinear sampling (texMode=2)
-- All lighting effects use TriFan prim type, so use that as well to filter against.
emuObj.SetGsTitleFix( "forceSimpleFetch",  "reserved", {prim=5, texMode=2, tbp=0x320000} )
</pre>


example: eeObj.GetGpr(gpr.a1) </pre>


<br>'''Commands'''
'''GetCPR0/SetCPR0
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
'''
! Command !! Example !! Notes !! Values
<pre>cpr.index   cpr.pagemask
|-
cpr.random   cpr.wired
|globalSet || emuObj.SetGsTitleFix( "globalSet",  "reserved", { packedRegsLo = 0x42,packedRegsHi = 0, packedRegsNum = 2, packedFlags = 3, packedPrim = 5}) || used with workLoadThreshold or  waveThreshold or loadThreshold
cpr.entrylo0      cpr.badvaddr
|-
cpr.entrylo1      cpr.count
|reserved || ||
cpr.context   cpr.entryhi
|-
 
|ignoreSubBuffCov||  ||ignore ? buffer coverage
 
cpr.compare   cpr.config    cpr.taglo
cpr.status   cpr.badpaddr  cpr.taghi
cpr.cause   cpr.hwbk cpr.errorepc
cpr.epc   cpr.pccr
cpr.prid
 
example: eeObj.GetCPR0(cpr.status) </pre>
 
====SetGsTitleFix====
 
One of very important commands in ps2 emu lua, allow to change GS behavior. Part of EmuObject() class, used frequently in official configs.
 
'''Commands'''  
 
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Notes
|-
|-
|ignoreUpRenderTimeout|| emuObj.SetGsTitleFix( "globalSet", "reserved", {ignoreUpRenderTimeout=2} ) ||
|globalSet || used with workLoadThreshold or  waveThreshold or loadThreshold
|-
|-
|ignoreAreaUpdate|| emuObj.SetGsTitleFix( "ignoreAreaUpdate", 0, { alpha=0x80000048 } ) ||
|reserved ||
|-
|-
|ignoreSprite|| emuObj.SetGsTitleFix( "ignoreSprite", "reserved", {  texType=1 , tw=5 , th=8, zmsk=1 , alpha=0x80000044  } ) ||
|forceBiLinear ||
|-
|-
|ignoreUpShiftTri|| emuObj.SetGsTitleFix( "ignoreUpShiftTri", "reserved", {psm=0} ) ||
|ignoreSubBuffCov|| ignore ? buffer coverage
|-
|-
|clipScissors|| emuObj.SetGsTitleFix( "clipScissors", "reserved", {alpha = 0 , frameW = 4 , psm = 0} ) ||
|trianglesAsParticles||
|-
|-
|trianglesAsParticles|| emuObj.SetGsTitleFix( "trianglesAsParticles", "reserved", { hasClut=1,zmsk=1 } ) ||
|ignoreAreaUpdate||
|-
|-
|SetSelfRender|| emuObj.SetGsTitleFix( "SetSelfRender", "reserved", { fbmask= 0x00FFFFFF , renderSelf=1 , zmsk=1 , alpha=0 , texMode=1  } ) ||
|SetSelfRender||
|-
|-
|forceBiLinear || ||
|ignoreSprite||
|-
|-
|forcePoint|| emuObj.SetGsTitleFix( "forcePoint", "reserved", {mipIsGt=0,  mmin=0} ) ||
|clipScissors||
|-
|-
|forceSimpleFetch ||   emuObj.SetGsTitleFix( "forceSimpleFetch",  "reserved", {psm=0} ) ||Used frequently to fix graphical corruptions
|forcePoint||
|-
|-
|forcePointSampling|| emuObj.SetGsTitleFix( "forcePointSampling", "reserved", {alpha = 0x80000048, twIsLess=5, thIsLess=5 } ) ||
|forcePointSampling||
|-
|-
|setRejectionArea|| emuObj.SetGsTitleFix( "setRejectionArea", 1000, { } ) ||
|setRejectionArea||
|-
|-
|ignoreUpRender|| emuObj.SetGsTitleFix( "ignoreUpRender", thresholdArea , {  texType = 3, cbp = 0x2390, tbp = 0x288000} ) || Ignore uprender for texture type described in params
|ignoreUpRender|| Ignore uprender for texture type described in params
|-
|-
|includeAreaUpdate|| ||
|includeAreaUpdate||
|-
|-
|fetchFromCurrBuff|| emuObj.SetGsTitleFix( "fetchFromCurrBuff", "reserved", {psm=0} ) ||
|forceSimpleFetch||
|-
|-
|skipPacked|| emuObj.SetGsTitleFix( "skipPacked", "reserved", { alpha = 0x80000044, tbp = 0x3a4000 , zmsk=1 }) ||
|fetchFromCurrBuff||
|-
|-
|changeAlpha|| ||
|ignoreUpShiftTri||
|-
|skipPacked||
|-
|changeAlpha||
|-
|ignoreUpRenderTimeout||
|-
|-
|}
|}


<br>'''Arguments/variables'''
'''Arguments/variables
'''
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Argument !! Usage !! Notes
! Argument !! Notes
|-style="background-color:#7698FF"
|  || Variable ||
|-
|-
|alpha_mask ||  ||
|alpha_mask ||  
|-
|-
|texType || {texType = 3}|| (1-3, more? )
|alphaIsNot || alpha - is not X
|-
|-
|texMode || || 1 - Point? , 2 - bilinear  
|texMode || 1 - Point? , 2 - bilinear  
|-style="background-color:#D7EF54"
|  || Argument ||
|-
|-
|alphaIsNot || || alpha - is not X
|twIsLess || texture width - is less than X
|-
|-
|twIsLess || || texture width - is less than X
|thIsLess || texture height - is less than X
|-
|-
|thIsLess || || texture height - is less than X
|twIsNot || texture width - is not X
|-
|-
|twIsNot || || texture width - is not X
|thIsNot || texture width - is not X
|-
|-
|thIsNot || || texture width - is not X
|psmIsNot || texture pixel storage format - is not X
|-
|psmIsNot || || texture pixel storage format - is not X
<pre>PSMCT32  = 0  PSMT4HL = 36
<pre>PSMCT32  = 0  PSMT4HL = 36
PSMCT24  = 1  PSMT4HH = 44
PSMCT24  = 1  PSMT4HH = 44
Line 1,345: Line 1,023:
PSMT8H  = 27  </pre>
PSMT8H  = 27  </pre>
|-
|-
|primIsNot || || GS primitive type - is not
|zmsk || Z (depth) draw mask
<pre>Point        = 0
<pre>update Z buffer      = 0
Line          = 1
don't update Z buffer = 1
LineStrip    = 2
Triangle      = 3
TriangleStrip = 4
TriangleFan  = 5
Sprite        = 6</pre>
|-
|mipIsGt || ||  mip level is grater than X (?)
|-
|-style="background-color:#FEA15C"
|  || Needs wikify ||
|-
|zmsk || || Z (depth) draw mask
<pre>update Z buffer      = 0
don't update Z buffer = 1


When 1 depth test result will be ignored</pre>
When 1 depth test result will be ignored</pre>
|-
|-
|tw || || texture width
|tw || texture width
|-
|-
|th || || texture height
|th || texture height
|-
|-
|ztst || || Z (depht) test method
|ztst || Z (depht) test method
<pre>ZNOUSE  = 0
<pre>ZNOUSE  = 0
ZALWAYS  = 1
ZALWAYS  = 1
Line 1,380: Line 1,044:
3 -        Pass if Z grater than Z buffer</pre>
3 -        Pass if Z grater than Z buffer</pre>
|-
|-
|mmin || || MMIN flag  
|mipIsGt || mip level is grater than X (?)
|-
|mmin || MMIN flag  
<pre>NEAREST                = 0
<pre>NEAREST                = 0
LINEAR                = 1
LINEAR                = 1
Line 1,388: Line 1,054:
LINEAR_MIPMAP_LINEAR  = 5</pre>
LINEAR_MIPMAP_LINEAR  = 5</pre>
|-
|-
|prim || || GS primitive type  
|prim || GS primitive type
<pre>Point        = 0
Line          = 1
LineStrip    = 2
Triangle      = 3
TriangleStrip = 4
TriangleFan  = 5
Sprite        = 6</pre>
|-
|primIsNot || GS primitive type - is not
<pre>Point        = 0
<pre>Point        = 0
Line          = 1
Line          = 1
Line 1,397: Line 1,072:
Sprite        = 6</pre>
Sprite        = 6</pre>
|-
|-
|fillArea || ||  
|fillArea ||  
|-
|-
|frameW || ||  
|frameW ||  
|-
|-
|renderSelf || ||  
|renderSelf ||  
|-
|-
|hasClut || ||  
|hasClut ||  
|-
|-
|alphaTest || ||  
|alphaTest ||  
|-
|-
|primTest || ||  
|primTest ||  
|-
|-
|workLoadThreshold || ||  
|workLoadThreshold ||  
|-
|-
|alpha || || <pre> example: alpha=0x80000044
|alpha || <pre> example: alpha=0x80000044
alpha=0</pre>
alpha=0</pre>
|-
|-
|tbp || || texture base pointer
|texType || (1-3, more? )
|-
|-
|cbp || {cbp = 0x2390} || CLUT buffer base pointer
|tbp || texture base pointer
|-
|-
|psm || {psm=0}  || texture pixel storage format
|cbp || CLUT buffer base pointer
|-
|psm || texture pixel storage format
<pre>PSMCT32  = 0  PSMT4HL = 36
<pre>PSMCT32  = 0  PSMT4HL = 36
PSMCT24  = 1  PSMT4HH = 44
PSMCT24  = 1  PSMT4HH = 44
Line 1,427: Line 1,104:
PSMT8H  = 27  </pre>
PSMT8H  = 27  </pre>
|-
|-
|mxl || || maximum mip level (0-6)
|mxl || maximum mip level (0-6)
|-
|-
|fbmask || { fbmask= 0x00FFFFFF}||  Framebuffer mask(?)
|fbmask || ?  
|-
|-
|totalArea || ||  
|totalArea ||  
|-
|-
|packedRegs || ||  
|packedRegs ||  
|-
|-
|packedRegsLo || ||  
|packedRegsLo ||  
|-
|-
|packedRegsHi || ||  
|packedRegsHi ||  
|-
|-
|packedRegsNum || ||  
|packedRegsNum ||  
|-
|-
|packedFlags || ||  
|packedFlags ||  
|-
|-
|packedPrim || ||  
|packedPrim ||  
|-
|-
|areaNumFrames || ||  
|areaNumFrames ||  
|-
|-
|waveThreshold || ||  
|waveThreshold ||  
|-
|-
|loadThreshold || ||  
|loadThreshold ||  
|-
|-
|fixSpriteDivTab || ||  
|fixSpriteDivTab ||  
|}
|}


=====(IOP) IOPObject=====
===Example config===
<pre>Commands for the emulated input-output processor</pre>
<pre>
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
require( "ee-gpr-alias" ) -- you can access EE GPR by alias (gpr.a0 / gpr["a0"])
! Command !! Usage !! Notes
apiRequest(0.4)
|-style="background-color:#D7EF54"
 
|  || Object calling class ||
-- Star Wars: Racer Revenge (SLES-50366) [US]
|-
 
| getIOPObject || local iopObj = getIOPObject() || Required for all functions using iopObj, that include: <div align="left"><pre>ReplaceMem64 ReplaceMem32 ReplaceMem16 ReplaceMem8 ReadMemFloat
local eeObj = getEEObject()
WriteMemFloat WriteMem64 WriteMem32 WriteMem16 WriteMem8
 
  ReadMemStr AddHook RemoveHook GetGpr SetGpr GetPc SetPc
eeInsnReplace(0x13d7f0, 0x1000ffff, 0x0804f45d) -- retry FREAD() for fix #9025,
GetCPR0 SetCPR0</pre></div>
eeInsnReplace(0x13BCD0, 0x3c023f80, 0x3C023F40) -- Zoom
|-style="background-color:#7698FF"
eeInsnReplace(0x1153B4, 0x3c023f80, 0x3C023FAB) -- Y-FOV
|  || Memory editing ||
 
 
-- Track#
-- The Grand Reefs : 6
-- Ruins of Carnuss Gorgull : 9
eeObj.AddHook(0x187330, 0x3c010001, function()
local track = eeObj.GetGpr(gpr.a1)
print(string.format("Track : %d", track))
if track == 6 or track == 9 then
eeObj.Vu1MpgCycles(1000) -- makes it be 30fps.
else
eeObj.Vu1MpgCycles(100) -- default value.
end
end)
</pre>
 
===== Custom config.lua example =====
 
Here is the first custom lua config created by the community:
 
<pre>
apiRequest(0.1)
 
-- Fix black screen SLUS-20064
 
eeInsnReplace(0x1CF3CC, 0x4100ffff, 0x00000000) -- nop, mftgpr $ra, $zero
</pre>
 
This is very basic command to replace part of EE memory with other instruction.
* apiRequest(0.1) - Is required for every config. Used version depend on your original eboot highest supported api. 0.1 seems to be enough for basic patches like here. 0.4 is highest known for now.
* -- Fix black screen SLUS-20064 is comment
* eeInsnReplace(0x1CF3CC, 0x4100ffff, 0x00000000) is our true command here. We are replacing here 0x4100FFFF to 0x00000000 at 0x1CF3CC memory offset. Like you can see we need to add what opcode is replaced. Not only patch, and memory offset.
* -- nop, mftgpr  $ra, $zero is just another comment, in this case explaining what is changed
 
=== PS2 Bios ===
 
The PS2 bios is the file PS20220WD20050620.crack included in every PS2 game .pkg. It Is '''exactly''' the same BIOS that SCE used in ps2_netemu.self in PS3.
 
Bios version seems to be Developement v2.20 from Japan region (22/01/2007), but it's of course not limited to booting only NTSC-J games.
MD5: 83AD2B530C9C102A561BA1CDC6D996D5
 
{| class="wikitable" style="font-size:small;"
! File !! Offset in exported bin !! Description !! File type (exportable)
|-
|-
|ReplaceMem64 ||iopObj.ReplaceMem64(<address>, <value>) ||
| RESET || 0x00 || Bootstrap code for the EE and IOP. || BIN
|-
|-
|ReplaceMem32 || iopObj.ReplaceMem32(<address>, <value>)||
| ROMDIR || 0x2780 || || BIN
|-
|-
|ReplaceMem16 || iopObj.ReplaceMem16(<address>, <value>)||
| EXTINFO || 0x2CC0 || Contains the "EXTINFO" for all files in the ROM image. || BIN
|-
|-
|ReplaceMem8 ||iopObj.ReplaceMem8(<address>, <value>) ||
| SBIN || 0x3330 || Seems to be the pad controller library for the PS1 monitor. || BIN
|-
|-
|ReadMemFloat || iopObj.ReadMemFloat(<address>) || iopObj.ReadMemFloat(0x28c3c)
| LOGO || 0xA2D0 || PS1 logo? || BIN
|-
|-
|WriteMemFloat || iopObj.WriteMemFloat(<address>, <value>) || iopObj.WriteMemFloat(0x65364, 1.3333333)
| IOPBTCONF || 00x1EA20 || Boot configuration file for the IOP, during the final phase of the IOP reset. If no UDNL module is specified, the IOP will only have a single IOP reset in the reboot process, with the modules listed in IOPBTCONF. || BIN
|-
|-
|ReadMem128 || iopObj.ReadMem128(<iop memory offset>)||  
| IOPBTCON2 || 0x1EB10 || Boot configuration file for the IOP, for the first phase of the IOP reset (before UDNL is loaded). || BIN
|-
|-
|WriteMem128 || iopObj.WriteMem128(<iop memory offset>, <value>)||
| SYSMEM || 0x1EBE0 || System Memory Manager. || ELF
|-
|ReadMemFloat128 ||iopObj.ReadMemFloat128(<iop memory offset>) ||
|-
|-
|WriteMemFloat128 || iopObj.WriteMemFloat128(<iop memory offset>, <value>)||
| LOADCORE || 0x1FE00 || The core of IOP module loading. Provides the lowest level of IOP module loading functions. Also handles the startup of the IOP. || ELF
|-
|-
| ReadMem64 || <pre>iopObj.ReadMem64(<iop memory offset>)</pre> || Read 8  Bytes From offset
| EXCEPMAN || 0x22380 || Exception manager. || ELF
|-
|-
| WriteMem64 || <pre>iopObj.WriteMem64(<iop memory offset>, <data>)</pre> || Write 8  Bytes From offset
| INTRMANP || 0x22F60 || Interrupt Manager. According to wisi, it is for PS mode. || ELF
|-
|-
| ReadMem32 || <pre>iopObj.ReadMem32(<iop memory offset>)</pre> || Read 4 bytes from offset, examples: iopObj.ReadMem32(0x1198)
| INTRMANI || 0x24970 || Interrupt Manager. According to wisi, it is for IOP mode. || ELF
iopObj.ReadMem32(gp - 348)
|-
|-
| WriteMem32 || <pre>iopObj.WriteMem32(<iop memory offset>, <data>)</pre> || Write 4 bytes to offset, example: iopObj.WriteMem32(0x89ac, 0x001b70f0)
| SSBUSC || 0x267B0 || SSBUS Controller library. The SSBUS seems to be the bus that all peripherals get connected to. It seems to have the power to control the mapping of the device registers, as well as access timing. || ELF
|-
|-
| ReadMem16 || <pre>iopObj.ReadMem16(<iop memory offset>)</pre> || Read 2 bytes from offset, example: iopObj.ReadMem16(0x1198)
| TIMEMANP || 0x26F20 || Timer Manager (PS mode) || ELF
|-
|-
| WriteMem16 || <pre>iopObj.WriteMem16(<iop memory offset>, <data>)</pre> || Write 2 bytes to offset, example: iopObj.WriteMem16(0x89ac, 0x70f0)
| TIMEMANI || 0x27B00 || Timer Manager (IOP mode) || ELF
|-
|-
| ReadMem8 || <pre>iopObj.ReadMem8(<iop memory offset>)</pre> || Read 1 byte from offset, example: iopObj.ReadMem8(0x1198)
| DMACMAN || 0x28730 || DMA Controller Manager. || ELF
|-
|-
| WriteMem8 || <pre>iopObj.WriteMem8(<iop memory offset>, <data>)</pre> || Write 1 byte to offset, example: iopObj.WriteMem8(0x89ac, 0xf0)
| SYSCLIB || 0x2BE30 || System C Library. || ELF
|-
|-
|ReadMemStr || ||
| HEAPLIB || 0x2E590 || Memory HEAP LIBrary (i.e. thvpool, thfpool) || ELF
|-
|-
|GetGpr || iopObj.GetGPR(<gpr register>) || iopObj.GetGPR(a1)
| THREADLIB || 0x2F290 || Multi_Thread_Manager || ELF
|-
|-
|SetGpr || iopObj.SetGPR(<gpr register> ,<value>) || example: iopObj.SetGPR(gpr.v0 ,3)
| VBLANK || 0x38020 || V-Blank management || ELF
|-
|-
|GetPc || iopObj.GetPc() || can be used also with additional var. like iopObj.GetPc()+8
| IOMAN || 0x38DB0 || IO Manager || ELF
|-
|-
|SetPc || iopObj.SetPC(<PC>) ||iopObj.SetPC(0x6B80)
| MODLOAD || 0x3AD20 || IOP module loader. || ELF
|-
|-
|GetCPR0 || iopObj.GetCPR0(<COP0 register>) ||
| ROMDRV || 0x3D070 || ROM driver. Provides access to the boot ROM (rom0). || ELF
|-
|-
|SetCPR0 || iopObj.SetCPR0(<COP0 register>) ||
| ADDDRV || 0x3DF60 ||  Adds support for the DVD ROM (rom1:), via ROMDRV. || ELF
|-
|-
|-style="background-color:#FEA15C"
| STDIO || 0x3D3C0 || Standard I/O library. || ELF
| || Clock speed ||  
|-
|-
| FastForwardClock || iopObj.FastForwardClock() ||
| SIFMAN || 0x3EFB0 || SIF manager. || ELF
|-
|-
| AdvanceClock || iopObj.AdvanceClock() ||
| SIFINIT || 0x40550 || Initializes the SIF. || ELF
|-
|-
| GetClock || iopObj.GetClock() || Returns the value of cycles the iop is ahead of (?)
| EESYNC || 0x40970 || For synchronizing with the EE, at the end of IOP resets. EESYNC from DNAS images are evil; they also perform a memory wipe of the region from 0x00084000 to .0x00100000. || ELF
|-style="background-color:#c6ecd9"
|  || Hooks ||
|-
|-
|AddHook || iopObj.AddHook()||
| EENULL || 0x40E10 ||  The idle thread (id #0) module, in ps2 loaded to 0x00081FC0. || BIN
|-
|-
|RemoveHook || iopObj.RemoveHook()||
| PS1ID || 0x40E50 || Only found in newer boot ROMs || BIN
|-
|-
|}
| LIBFI || 0x40E60 || Not present in the boot ROM of the SCPH-10000 and SCPH-15000. || BIN
 
=====(GS) GsObject=====
<pre>Commands for the emulated Graphics synthesizer</pre>
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Usage !! Notes
|-style="background-color:#D7EF54"
|  || Object calling class ||
|-
|-
| getGsObject || local gsObj = getGsObject() ||  
| PS1VERJ || 0x40F50 ||   || BIN
|-style="background-color:#c6ecd9"
|  || Graphical fixes / Improvement ||  
|-
|-
|SetL2HMode || gsObj.SetL2HMode(true)|| (true) and (false) are only known options
| PS1VERA || 0x40F60 ||   || BIN
|-
|-
|SetUprenderMode ||gsObj.SetUprenderMode(1)|| Set uprender mode. Overrides CLI, 0=none, 1=2x2
| PS1VERE || 0x40F70 ||  || BIN
|-
|-
|SetUpscaleMode || gsObj.SetUpscaleMode("EdgeSmooth") || Sets upscale mode. Overrides CLI
| PS1VERC || 0x40F80 ||  || BIN
|-
|-
|GetFramesInQueue || gsObj.GetFramesInQueue() || Returns the value of the frames that are still in queue
| PS1VERH || 0x40F90 || || BIN
|-
|-
|SetFrameSkipping || gsObj.SetFrameSkipping(true) || false and true are the values.
| OSDSYS || 0x40FA0 || The browser || BIN
|-
|-
|SetDeinterlaceShift || gsObj.SetDeinterlaceShift(0) || The values are 1 and 0, Enable or disable interlacing, requires emulators with high api
| - || 0x40FB0 ||   || BIN
|-
|-
|}
| RDRAM || 0x41000  || Provides a RDRAM test for the EE at power-on. This is run from RESET. || BIN
 
|-
=====Does not require Object calling or Uknown=====
| EELOADCNF || 0x43D50 || Contains the IOP boot configuration file for EELOAD. || BIN
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
|-
! Command !! Usage !! Notes
| SIFCMD || 0x43F00 || SIF command module. Contains the SIF command and SIF RPC functions. || ELF
|-
|-
| eeInsnReplace || eeInsnReplace(EE memory offset, Original opcode (BE), Replace opcode (BE)) || Replace 4 bytes opcode in ee memory, correct memory range is 0x0 to 0x1FFFFFFF
| REBOOT || 0x46140 || The reboot service. Receives IOP reset packets from the EE, from across the SIF. || ELF
|-
|-
| vuInsnReplace || <pre>vuInsnReplace(vu 0/1, vu memory offset divided by 8, (original opcode<<32) | original opcode, (replace opcode<<32) | replace opcode) </pre>|| Replace 2 x 4 bytes in VU memory, correct memory range depend on selected VU, left shift by 32 is used for VU lower opcodes. Command will fail if size is above 254. <pre>example:
| LOADFILE || 0x46910 || The RPC server for MODLOAD || ELF
vuInsnReplace(0, 0x167, (0x000002ff << 32) | 0x520507ff,(0x000002ff << 32) | 0x8000033c)
Replace 64 bits of VU0 at offset 0xB38</pre>
|-
|-
| iopInsnReplace || iopInsnReplace(IOP memory offset, Original opcode, opcode replacement) || Replace 4 bytes in iop memory, correct memory range is 0x0 to 0x1FFFFF, iopInsnReplace(0x1FFFFF, 0x0, 0x0803fff0)
| EECONF || 0x49070 || Loads part of the system configuration from the MECHACON EEPROM. Also configures and resets some peripherals, depending on the model version. In slimlines, and possibly on PS3 EECONF will also load the MAC address. || ELF
|-
|-
| eeNativeFunction || eeNativeFunction(<ee offset>, <original opcode>, <function>) || eeNativeFunction(0x11fa9c, 0x0080402d, 'memcpy')
| - || 0x49FF0 ||   || BIN
Different emulators can have different functions included, vide SO3. Require api 1.4 or higher.
But functions from this list should be available in every emu:
<pre>ieee754_acosf ieee754_asinf ieee754_sqrtf
fabs cosf fabsf
sinf acosf asinf
sqrtf fptoui fptodp
litodp dptoli dptofp
memcpy memset strlen</pre>
|-
|-
| eeNativeHook || eeNativeHook(<ee ofset>, <original opcode>, <action>) || eeNativeHook require apiRequest(1.4) or higher.
| IOPBOOT || 0x4A000 || IOP bootup program || BIN
|-
|-
| GsCustomShader || ||  
| - || 0x4B160 ||   || BIN
|-
|-
| Unlock || ||  
| TBIN || 0x4B800 || The PS1 monitor program. Seems to be the PS1 BIOS. This is started by RESET, when the IOP is in PS1 mode. || BIN
|-
|-
| IsUnlocked || ||  
| XSHA1 || 0x59770 || sha1 - this only present in PS3. It is used as additional antipiracy check. It seems that it calculate disc main elf checksum and compares it with some database. Config related?|| ELF
|-
|-
| InsnOverlay || InsnOverlay({<opcode, opcode, opcode...>}) || example: <div align="left"><pre>InsnOverlay({
| XLOADFILE || 0x5A740 || Updated module || ELF
0x27bdfff0, -- addiu $sp, -0x10
0xffbf0000, -- sd $ra, 0(sp)
0xffb00008, -- sd $s0, 8(sp)
0x3c05000f, -- lui $a1, 0x000f
0x34a57000, -- ori $a1, 0x7000
0x0c0db8b6, -- jal Script::State::DoString
0x0080802d, -- move $s0, $a0
0x24050001, -- li $a1, 1
0x0c0dba4c, -- jal Script::State::IsNull(int)
0x0200202d, -- move $a0, $s0
0xdfb00008, -- ld $s0, 8(sp)
0xdfbf0000, -- ld $ra, 0(sp)
0x03e00008, -- jr ra
0x27bd0010  -- addiu $sp, 0x10
})</pre></div>
|-
|-
| eeDebugBreak || ||  
| SIO2MAN || 0x5D7F0 || SIO2 manager. Provides access to the SIO2 interface. || ELF
|-
|-
| CsBindShader || ||  
| - || 0x5F420 ||   || BIN
|-
|-
| CsSetParamInt32 || ||  
| MCSERV || 0x61340 || RPC server for MCMAN. || ELF
|-
|-
| CsSetParamFloat || ||  
| - || 0x63040 ||   || BIN
|-
|-
| CsResetContext || ||  
| KROMG || 0x64000 ||   || BIN
|-
|-
| CsPrintContext || ||  
| - || 0x65CC0 ||   || BIN
|-
|-
| PsBindShader || ||  
| KROM || 0x66000 || Kanji ROM? Not sure where this is used. || BIN
|-
|-
| PsSetParamInt32 || ||  
| - || 0x7FE70 ||   || BIN
|-
|-
| PsSetParamFloat || ||  
| ROMVER || 0x7FF00 || ROM version. || BIN
|-
|-
| PsResetContext || ||  
| - || 0x7FF10 ||   || BIN
|-
|-
| PsPrintContext || ||  
| VERSTR || 0x7FF30 || Version string. Probably PS1 ROM will use this because that this string is also present in PlayStation consoles. || BIN
|-
|-
|}
| - || 0x7FF90 ||  || BIN
<pre>Note: eeObj, emuObj, gsObj, etc are described as required, this is not really true. You can set functions locals they use as whatever you want, but due to specify of that emulator it will be better to keep official naming used in official configs.</pre>
 
=====Other objects=====
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Command !! Usage !! Notes
|-
|-
! !! getGLSObject class !!
| ROMGSCRT || 0x80000 ||  || BIN
|-
|-
| getGLSObject || ||  
| NCDVDMAN || 0x82D30 || It seems to be a heavily stripped-down CDVDMAN module, with no support for some S-command functions like sceCdRI. || ELF
|-
|-
|Enable || ||
| SECRMAN || 0x8F770 || Security Manager. Signing is NOT done with the one in ROM, but with a special version that comes with the utility discs. Looks like PS3 units have a different SECRMAN module from retail sets, similar to PS2 TOOL one. || ELF
|-
|-
|EnableServerRecording || ||  
| MCMAN || 0x93C30 || Memory Card Manager. || ELF
|-
|-
|Pause || ||  
| PADMAN || 0xA30C0 || Pad manager. || ELF
|-
|-
! !! getAudioObject class !!
| CDVDMAN || 0xAC810 || The CD/DVD manager. || ELF
|-
|-
| getAudioObject || ||  
| CDVDFSV || 0xB4BC0 || The RPC server for CDVDMAN. || ELF
|-
|-
| muteStreamingAll || ||  
| FILEIO || 0xBCF80 || RPC server for IOMAN. Sony has greatly changed the semantics and design of FILEIO after some point. Connecting an old FILEIO EE RPC client to a newer server will result in a severe IOP crash. || ELF
|-
|-
| muteStreamingMain || ||  
| CLEARSPU || 0xBF080 || Seems to clear/reset the SPU, but is known to cause crashes under some conditions. Not sure if it's buggy or not. Only used by the OSDSYS of the SCPH-10000 and SCPH-15000, probably retained for backward-compatibility. || ELF
|-
|-
| muteStreamingBGM || ||  
| UDNL || 0xC0CC0 || It is responsible for selecting the modules and starting the IOP, during the final phase of the IOP reset where the desired modules are to be loaded into the IOP. || ELF
|-
|-
! !! getRemotePlayObject class !!
| IGREETING || 0xC2BC0 || Displays boot information (i.e. IOP boot type, EBOOTP, IBOOTP, switch positions for DSW602 and the type of DSW602 board installed || ELF
|-
|-
| getRemotePlayObject || ||  
| EELOAD || 0xC3C20 || The EE ELF loader, which is loaded by LoadExecPS2() to 0x00082000 in PS2 for loading ELFs. || BIN
|-
|-
| Enable || ||  
| XCDVDMAN || 0xD2DA0 || cdvd_driver - Updated module || ELF
|-
|-
! !! getVideoRecordingObject class !!
| XCDVDFSV || 0xE1B30 ||  cdvd_ee_driver - Updated module || ELF
|-
|-
| getVideoRecordingObject || ||
| OSDSND || 0xEFF60 || OSD sound library. This is actually the tentative sound driver, which is called "librspu2" in the Sony SDK. || ELF
|-
|-
| Enable || ||  
| PS2LOGO || 0x11ABB0 || Displays the PlayStation 2 logo from the inserted disc. For newer consoles, if the logo cannot be decrypted properly, it will fall back to the browser. Not actually required to boot games, but the Sony OSDSYS boots PS2 games through this program. || ELF
|-
|-
! !! getSharePlayObject class !!
| XPARAM2 || 0x137500 || File store per title settings for IOP emulation (XPARAM available also in real PS2 since 750XX where Deckard powerPC was introduced) || ELF
|-
|-
| getSharePlayObject || ||  
| OSDSYS || 0x139A00 || The browser || BIN
|-
|-
| Enable || ||  
| PIOPRP || 0x177880 ||   || BIN
|-
|-
! !! getSpriteObject group  !!
| KERNEL || 0x1BB7E0 || The EE kernel || BIN
|-
|}
|getSpriteObject || ||
Description source: https://gist.github.com/uyjulian/25291080f083987d3f3c134f593483c5
|-
 
|Enable || ||
==== Game_ID/DiscID in PS20220WD20050620.crack ====
|-
 
|Disable || ||
There are 193 titleIDs listed inside XPARAM2.ELF file of PS2 Bios included in PS20220WD20050620.crack. XPARAM2.ELF is called by OSDSYS. Then ID check is performed. If titleID match to one of included in the table, different IOP emulation settings are applied.
|-
|BindFragmentShader || ||
|-
|SetShaderParams || || <div align="left">
<pre> Is not clear that params depend on shader, or are somehow hardcoded.
Example usage:


local sprite0 = getSpriteObject(0)
Original PS2 bios include similar list file called XPARAM.ELF, but Title IDs there are not the same, although some of them exist on both lists.
local scanlineParams = {
240.0, -- float scanlineCount
  0.7, -- float scanlineHeight;
1.5,        -- float scanlineBrightScale;
0.5,       -- float scanlineAlpha;
0.5        -- float vignetteStrength;
}


sprite0.SetShaderParams(scanlineParams)</pre></div>
{| class="wikitable sortable" ||
! ID in XPARAM2 !! Title !! Settings/Flags !! Remarks
|-
| SLUS_214.52 || Valkyrie Profile 2: Silmeria || 08000000 88130000  ||
|-
|-
|BindTexture || ||
| SLUS_214.04 || Final Fantasy XI: Treasures of Aht Urhgan || 02000000 0B000000 ||
|-
|-  
|SetPosXY || ||
| SLUS_213.39 || Puzzle Challenge || 01000000 00080000 ||  
|-
|-  
|SetSizeXY || ||
| SLUS_213.31 || Sonic Riders || 01000000 00080000 ||  
|-
|-  
|SetPosUV || ||
| SLUS_210.89 || Karaoke Revolution Vol.3 || 08000000 88130000 ||  
|-
|-  
|SetSizeUV || ||
| SLUS_210.70 || Final Fantasy XI: Chains of Promathia || 02000000 0B000000 ||  
|-
|-  
|PrintContext || ||
| SLUS_210.59 || Tekken 5 || 0B000000 00000040 ||  
|-
|-  
|SetBlendColor || sprite<X>.SetBlendColor(<R,G,B,A>) in floats, max val. 1.0 || <div align="left">
| SLUS_209.18 || Super Monkey Ball: Deluxe || 01000000 00080000 ||  
<pre>local sprite0 = getSpriteObject(0)
|-  
sprite0.SetBlendColor(1.0,1.0,1.0,1.0)</pre></div>
| SLUS_208.91 || Star Ocean: Til the end of Time [Disc 2] || 08000000 88130000 ||  
|-
|-  
| getTrophyObject || local trophyObj = getTrophyObject() || Required for all functions using trophyObj
| SLUS_208.51 || Ace Combat 5: The Unsung War || 0A000000 00005000 ||  
|-
|-  
| getDmaObject || local dmaObj = getDmaObject() || Depreciated API - use EE:DmaAddHook / EE:DmaRemoveHook instead. Is not clear when it was depreciated, JAK emu don't use it.
| SLUS_208.38 || All-Star Baseball 2005 || 01000000 02080000 ||  
|-
|-  
| getScreenShotObject || ||  
| SLUS_206.86 || Splashdown: Rides Gone Wild || 0A000000 00040800 ||
|-
|-
|}
| SLUS_206.39 || Def Jam Vendetta || 01000000 00080000 ||
 
|-
====Registers for hook====
| SLUS_206.35 || Muppets Party Cruise || 01000000 01080000 ||
Registers defined in alias files.  
|-
 
| SLUS_205.90 || Spyhunter 2 || 01000000 00080000 ||
'''GetGpr/SetGpr
|-
'''
| SLUS_205.72 || Tiger Woods PGA Tour 2003 || 0A000000 E8030800 ||
<pre>gpr.zero gpr.at
|-
gpr.v0 gpr.v1
| SLUS_204.88 || Star Ocean: Til the end of Time [Disc 1] || 08000000 88130000 ||
gpr.a0 gpr.a1  gpr.a2  gpr.a3
|-
gpr.t0 gpr.t1  gpr.t2  gpr.t3
| SLUS_204.33 || SWAT: Global Strike Team || 01000000 00080000 ||
gpr.t4 gpr.t5  gpr.t6 gpr.t7
|-
gpr.s0  gpr.s1  gpr.s2  gpr.s3
| SLUS_204.13 || Shadowman 2 || 0A000000 00060800 ||
gpr.s4 gpr.s5  gpr.s6  gpr.s7
|-
gpr.t8 gpr.t9
| SLUS_203.64 || Tiger Woods PGA Tour 2002 || 0A000000 E8030800 ||
gpr.k0  gpr.k1
|-
gpr.gp gpr.sp  gpr.fp  gpr.ra
| SLUS_203.05 || Simpsons: Road Rage || 01000000 00080000 ||
gpr.lo gpr.hi  gpr.sa
|-
 
| SLUS_202.74 || City Crisis || 0A000000 B80B0800 ||
example: eeObj.GetGpr(gpr.a1)
|-
</pre>
| SLUS_200.77 || Donald Duck: Go'in Quackers || 01000000 00080000 ||
 
|-
'''GetCPR0/SetCPR0
| SLUS_200.11 || Orphen: Ocion of Sorcery || 09000000 10000008 ||
'''
|-
<pre>cpr.index   cpr.pagemask
| SLUS_200.11 || Orphen: Ocion of Sorcery || 08000000 88130000 ||
cpr.random   cpr.wired
|-
cpr.entrylo0      cpr.badvaddr
| SLPS_732.49 || Ar tonelico Qoga: Knell of Ar Ciel (Platinum) || 00000000 0000000A ||
cpr.entrylo1      cpr.count
|-
cpr.context   cpr.entryhi
| SLPS_257.27 || Routes PE || 08000000 E8030000 ||
 
|-
 
| SLPS_257.22 || Routes PE (Limited Edition) || 08000000 E8030000 ||
cpr.compare   cpr.config    cpr.taglo
|-
cpr.status   cpr.badpaddr  cpr.taghi
| SLPS_257.21 || HimeHibi - Princess Days || 0B000000 00000008 ||
cpr.cause   cpr.hwbk cpr.errorepc
|-
cpr.epc   cpr.pccr
| SLPS_257.09 || The Familiar of Zero || 0A000000 E8030800 ||
cpr.prid
|-
 
| SLPS_257.08 || The Familiar of Zero (Limited Edition) || 0A000000 E8030800 ||
example: eeObj.GetCPR0(cpr.status) </pre>
|-
 
| SLPS_256.98 || Fatal Fury Battle Archives Volume 2 || 00000000 0000000A ||
 
|-
====Official examples====
| SLPS_256.67 || Daito Giken Premium Pachi-Slot Collection: Yoshimune || 01000000 00180000 ||
[https://www.psdevwiki.com/ps4/Talk:PS2_Classics_Emulator_Compatibility_List#Official_PS2emu_Configuration_Files You can find the rest of them here]
|-
<br>Canis Canem Edit
| SLPS_256.04 || Ar tonelico Qoga: Knell of Ar Ciel || 00000000 0000000A ||
<br>'''SLES 535.61'''
|-
<br>'''LUA'''
| SLPS_255.86 || Tales of the Abyss || 0A000000 E8030800 ||
<pre>
|-  
require( "ee-gpr-alias" ) -- you can access EE GPR by alias (gpr.a0 / gpr["a0"])
| SLPS_255.85 || Monster Farm 5: Circus Caravan || 07000000 05000000 ||
apiRequest(0.1)
|-  
-- EA sports cricket 07 bug 9392
| SLPS_255.10 || Tekken 5 || 0B000000 00000040 ||
-- Performance fix
|-
local emuObj = getEmuObject()
| SLPS_254.18 || Ace Combat 5: The Unsung War || 0A000000 00005000 ||
local thresholdArea = 600
|-
emuObj.SetGsTitleFix( "ignoreUpRender", thresholdArea , {alpha=0x80000044 , zmsk=1 , tw=4, th=4 } )
| SLPS_254.06 || Hitman: Contracts || 08000000 AC0D0000 ||
</pre>
|-  
 
| SLPS_253.79 || Tokyo Majin Gakuen: Kaihoujyou Kefurokou || 0A000000 E8030800 ||
====Custom config.lua examples====
|-
Here is the first custom lua config created by the community:
| SLPS_253.57 || 3-Nen B-Gumi Kinpachi Sensei: Densetsu no Kyoudan ni Tate! || 01000000 00180000 ||
 
|-
<pre>
| SLPS_253.15 || One Piece: Grand Battle 3 || 01000000 00180000 ||
apiRequest(0.1)
|-  
 
| SLPS_252.90 || Time Crisis 3 || 01000000 00080000 ||
-- Fix black screen SLUS-20064
|-  
 
| SLPS_252.78 || Memories Off: Mix || 0A000000 00030800 ||
eeInsnReplace(0x1CF3CC, 0x4100ffff, 0x00000000) -- bc0f 0x1CF3CC to nop
|-  
</pre>
| SLPS_252.75 || Def Jam: Vendetta || 01000000 02080000 ||  
This is a very basic command to replace a part of the EE memory with another instruction.
|-  
* apiRequest(0.1) - Is required for every config. Used version depend on your original eboot highest supported api. 0.1 seems to be enough for basic patches like here. 2.3 is highest known for now.
| SLPS_252.37 || Only You || 0B000000 00000040 ||
* -- Fix black screen SLUS-20064 is comment
|-  
* eeInsnReplace(0x1CF3CC, 0x4100ffff, 0x00000000) is our true command here. We are replacing the value 0x4100FFFF to 0x00000000 at the offset of 0x1CF3CC . Like you can see we need to add what opcode is replaced. Not only patch, and memory offset.
| SLPS_251.50 || Only You || 0B000000 00000040 ||
* -- bc0f 0x1CF3CC to nop is just another comment, in this case explaining what is changed
|-  
[https://www.psdevwiki.com/ps4/Talk:PS2_Classics_Emulator_Compatibility_List#Custom_PS2emu_Configuration_Files Other custom configurations made by users can be found here]
| SLPS_251.42 || Tiger Woods PGA Tour 2002 || 0A000000 E8030800 ||
 
|-  
=Memory Mapping=
| SLPS_251.36 || Kuon no Kizuna Sairin Mikotonori || 0A000000 DC050800 ||
 
|-  
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: left;"
| SLPS_250.81 || Saishuu Densha || 0A000000 E8030800 ||  
! Name !! From !! To
|-  
|-
| SLPS_250.72 || A Visual Mix: Ayumi Hamasaki Dome Tour 2001 || 08000000 50140000 ||
|EE Flat Memory (4gb)              || 0x0000008000000000 || 0x0000008100000000
|-  
|-
| SLPS_250.71 || A Visual Mix: Ayumi Hamasaki Dome Tour 2001 || 08000000 50140000 ||
|IOP Flat Memory (4gb)            ||  0x0000009000000000 || 0x0000009100000000
|-  
|-
| SLPS_250.08 || Sorcerous Stabber Orphen || 08000000 1C0C0000 ||
|R59 Binary Cache                  ||  0x0000000914B10000 || 0x0000000916B10000
|-  
|-
| SLPS_204.55 || Simple 2000 Series Vol.94: The Aka-Champion - Come on Baby || 0B000000 00000040 ||
|R30 Binary Cache                  ||  0x0000000916B14000 || 0x0000000917314000
|-  
|-
| SLPS_204.29 || Hissatsu Pachi-Slot Evolution: Ninja Hattori-Kun V || 08000000 581B0000 ||
|jitVU0                            ||  0x0000000917318000 || 0x0000000917B18000
|-  
|-
| SLPS_204.04 || Rakushou! Pachi-Slot Sengen 2 || 0A000000 00030800 ||  
|jitVU1                            ||  0x0000000917B1C000 || 0x0000000918B1C000
|-  
|-
| SLPS_202.00 || Final Fantasy XI || 02000000 0B000000 ||
! !! Host's EE Memory Map !!
|-  
|-
| SLPS_201.99 || F1 2002 || 0B000000 05000200 ||
|EE RAM - Kernel                  ||  0x0000008000000000 || 0x0000008000080000
|-  
|-
| SLPS_201.97 || Surfing Air Show with RatBoy || 09000000 0A00472B ||  
|EE RAM - Debug                    ||  0x0000008000078000 || 0x0000008000080000
|-  
|-
| SLPS_201.73 || Hard Hitter 2 || 0A000000 00030800 ||
|EE RAM - User                    ||  0x0000008000080000 || 0x0000008002000000
|-  
|-
| SLPS_201.72 || Koushien: Konpeki no Sora || 09000000 0A00472B ||
|EE Hw Devices                    ||  0x0000008010000000 || 0x0000008010010000
|-  
|-
| SLPS_201.11 || Magical Sports Pro Baseball 2001 || 09000000 0A00472B ||
|EE ROM                            ||  0x000000801FC00000 || 0x000000801FFE0000
|-  
|-
| SLPS_201.01 || City Crisis || 0A000000 B80B0800 ||
|EE RAM - Uncached                || 0x0000008020080000 || 0x0000008022000000
|-  
|-
| SLPS_200.66 || Tenshi no Present: Marle Oukoku Monogatari || 0B000000 00000020 ||
|EE RAM - UncachedAccel            ||  0x0000008030100000 || 0x0000008032000000
|-  
|-
| SLPS_200.53 || Tenshi no Present: Marle Oukoku Monogatari (Limited Edition) || 0B000000 00000020 ||  
|EE Scratchpad                    ||  0x0000008070000000 || 0x0000008070004000
|-  
|-
| SLPS_200.38 || Grappler Baki: Baki Saidai no Tournament || 08000000 94110000 ||
|EE Debug                          ||  0x00000080FFFF8000 || 0x0000008100000000
|-  
|-
| SLPS_200.37 || Go Go Golf || 09000000 0A00472B ||
! !! Host's IOP Memory Map  !!
|-
|-
| SLPS_200.20 || FIFA 2000 World Championship || 04000000 01200000 ||
|IOP RAM                          ||  0x0000009000000000 || 0x0000009000200000
|-  
|-
| SLPS_200.08 || Morita Shogi || 08000000 88130000 ||
|IOP RAM (mirror 1)                ||  0x0000009000200000 || 0x0000009000400000
|-
|-
| SLPM_680.10 || || 08000000 88130000 ||  
|IOP RAM (mirror 2)                ||  0x0000009000400000 || 0x0000009000600000
|-  
|-
| SLPM_680.07 || Karaoke Revolution (Trial) || 08000000 88130000 ||  
|IOP RAM (mirror 3)                ||  0x0000009000600000 || 0x0000009000800000
|-
|-
| SLPM_665.74 || Detective Evangelion || 00000000 00000002 ||  
|IOP Scratchpad                    ||  0x000000901F800000 || 0x000000901F801000
|-  
|-
| SLPM_665.58 || Tomb Raider: Legend || 08000000 E8030000 ||  
|IOP HW                            || 0x000000901F801000 || 0x000000901F810000
|-
|-
| SLPM_665.39 || Nobunaga no Yabou Online: Haten no Shou || 02000000 0B000000 ||  
|IOP ROM                          ||  0x000000901FC00000 || 0x000000901FFE0000
|-  
|-
| SLPM_664.36 || Aria the Natural || 01000000 00180000 ||  
|}
|-
 
| SLPM_664.36 || Aria the Natural || 00000000 0000000A ||  
==Registers Map==
|-  
===EE-IOP===
| SLPM_663.94 || Final Fantasy XI: Treasures of Aht Urhgan || 02000000 0B000000 ||  
<pre>This list of registers is yet to be completed. Some registers are incorrectly named or include incorrect offsets. 0x1000000xxx base is not guaranteed in different emu revisions, but layout should be the same regardless.
|-
Assuming base is different (Like on kof2000), simply reduce these offsets by 8 hex values
| SLPM_663.93 || Final Fantasy XI: Treasures of Aht Urhgan (All-In-One Edition)  || 0A000000 E8030800 ||  
(IOP, VU0, and VU1 registers' offsets are static in all emulators).
|-  
</pre>
| SLPM_663.93 || Final Fantasy XI: Treasures of Aht Urhgan (All-In-One Edition) || 09000000 0A00472B ||  
<pre> List was designed for Jak v2
|-
Eboot md5:c644f6879af225a6e5a70233fc4625a3</pre>
| SLPM_663.93 || Final Fantasy XI: Treasures of Aht Urhgan (All-In-One Edition) || 02000000 0B000000 ||  
{| class=wikitable style="border: none; background: none;"
|-  
! scope=col | GPR-EE
| SLPM_661.75 || Akumajo Dracula: Yami no Juin || 0B000000 1C000200 ||  
! scope=col | Address
|-
| rowspan=900 style="border: none; background: none;"|
| SLPM_661.75 || Akumajo Dracula: Yami no Juin || 08000000 60000000 ||  
! scope=col | FPR
|-  
! scope=col | Address
| SLPM_661.56 || Marheaven: Arm Fight Dream || 01000000 00180000 ||  
| rowspan=900 style="border: none; background: none;"|
|-
! scope=col | CP0
| SLPM_660.57 || Taito Memories Vol.1 || 08000000 E40C0000 ||  
! scope=col | Address
|-  
| rowspan=900 style="border: none; background: none;"|
| SLPM_660.48 || The Sword of Etheria || 08000000 1C0C0000 ||  
! scope=col | GPR-IOP
|-
! scope=col | Address
| SLPM_660.48 || The Sword of Etheria || 00000000 00000002 ||  
|-
|-  
| zero  || 0x1000000000 || f00 || 0x1000000230 || Index ||  0x10000002D0 || zero ||   0x1020000000
| SLPM_660.33 || The Sword of Etheria || 08000000 1C0C0000 ||  
|-style="background-color:#EEEFF2"
|-
|   at || 0x1000000010 || f01 || 0x1000000234 || Random || 0x10000002D4  || at  || 0x1020000004
| SLPM_660.33 || The Sword of Etheria || 00000000 00000002 ||  
|-
|-  
|   v0 ||  0x1000000020 || f02 || 0x1000000238 || EntryLo0  || 0x10000002D8  || v0  || 0x1020000008
| SLPM_659.84 || Grand Theft Auto: San Andreas || 0A000000 E8030800 ||  
|-style="background-color:#EEEFF2"
|-
|   v1 || 0x1000000030 || f03 || 0x100000023C  || EntryLo1 || 0x10000002DC  || v1  || 0x102000000C
| SLPM_659.53 || Final Fantasy: XI (Entry Disc 2005) || 02000000 0B000000 ||  
|-
|-  
|   a0 || 0x1000000040 || f04  || 0x1000000240  || Context ||   0x10000002E0  || a0  || 0x1020000010
| SLPM_659.34 || Maple Colors || 0A000000 00030800 ||  
|-style="background-color:#EEEFF2"
|-
|   a1 || 0x1000000050 || f05 || 0x1000000244 ||   PageMask || 0x10000002E4 || a1 || 0x1020000014
| SLPM_658.94 || Winning Post 6: 2005 Version || 01000000 00240000 ||  
|-
|-  
|   a2 || 0x1000000060 || f06 || 0x1000000248 || Wired  ||   0x10000002E8 || a2  || 0x1020000018
| SLPM_657.83 || Nobunaga no Yabou Online: Tappi no Shou || 02000000 0B000000 ||  
|-style="background-color:#EEEFF2"
|-
|   a3 || 0x1000000070 || f07 || 0x100000024C  || rsvd7  ||   0x10000002EC || a3 || 0x102000001C
| SLPM_657.19 || Burnout 3: Takedown || 01000000 001C0000 ||  
|-
|-  
|   t0  ||  0x1000000080 || f08 || 0x1000000250 || BadVAddr ||   0x10000002F0 || t0 || 0x1020000020
| SLPM_657.06 || Final Fantasy XI: Chains of Promathia (All-In-One Edition) || 02000000 0B000000 ||  
|-style="background-color:#EEEFF2"
|-
|   t1  ||  0x1000000090 || f09|| 0x1000000254 || Count  ||   0x10000002F4 || t1 || 0x1020000024
| SLPM_657.05 || Final Fantasy XI: Chains of Promathia (Expansion Disc) || 02000000 0B000000 ||  
|-
|-  
|   t2  ||  0x10000000A0 || f10 || 0x1000000258 || EntryHi  ||   0x10000002F8 || t2 || 0x1020000028
| SLPM_656.98 || Love Songs: ADV Futaba Riho 14-sai Natsu || 0A000000 80030800 ||  
|-style="background-color:#EEEFF2"
|-
|   t3  || 0x10000000B0  || f11  || 0x100000025C || Compare ||   0x10000002FC || t3 || 0x102000002C
| SLPM_656.33 || I Love Baseball: Pro Yakyu wo Koyonaku || 08000000 A00F0000 ||  
|-
|-  
|   t4  || 0x10000000C0 || f12 || 0x1000000260  || Status ||   0x1000000300 || t4 || 0x1020000030
| SLPM_654.88 || Grand Theft Auto: Vice City || 0A000000 00030000 ||  
|-style="background-color:#EEEFF2"
|-
|   t5  || 0x10000000D0 || f13 || 0x1000000264 || Cause ||   0x1000000304 || t5 || 0x1020000034
| SLPM_654.88 || Grand Theft Auto: Vice City || 09000000 00020036 ||  
|-
|-  
|   t6  || 0x10000000E0  ||  f14 || 0x1000000268 || EPC  ||   0x1000000308 ||   t6 || 0x1020000038
| SLPM_654.39 || Star Ocean: Till the End of Time (Director's Cut) (Disc 2) || 0B000000 14000200 ||  
|-style="background-color:#EEEFF2"
|-
|   t7 ||  0x10000000F0 || f15 || 0x100000026C || PRid  ||   0x100000030C || t7  || 0x102000003C
| SLPM_654.38 || Star Ocean: Till the End of Time (Director's Cut) (Disc 1) || 0B000000 14000200 ||  
|-
|-  
|   s0 ||  0x1000000100 || f16 || 0x1000000270 || Config ||   0x1000000310 || s0 || 0x1020000040
| SLPM_652.09 || Star Ocean: Till the End of Time || 0B000000 14000200 ||  
|-style="background-color:#EEEFF2"
|-
|   s1 || 0x1000000110 || f17  || 0x1000000274 || Iab ||   0x1000000314 || s1  || 0x1020000044
| SLPM_651.97 || Nobunaga's Ambition Online || 02000000 0B000000 ||  
|-
|-  
|   s2 ||  0x1000000120 || f18 || 0x1000000278 || Iabm ||   0x1000000318 || s2  || 0x1020000048
| SLPM_650.90 || Spy Hunter || 01000000 00180000 ||  
|-style="background-color:#EEEFF2"
|-
|   s3 ||  0x1000000130 || f19 || 0x100000027C  || Dab ||   0x100000031C ||   s3 || 0x102000004C
| SLPM_650.87 || A Visual Mix: Ayumi Hamasaki Dome Tour 2001 (Disc 2) || 08000000 50140000 ||  
|-
|-  
|   s4 || 0x1000000140 || f20  || 0x1000000280  || Dabm ||   0x1000000320 || s4  || 0x1020000050
| SLPM_650.86 || A Visual Mix: Ayumi Hamasaki Dome Tour 2001 (Disc 1) || 08000000 50140000 ||  
|-style="background-color:#EEEFF2"
|-
|   s5 ||  0x1000000150 || f21  || 0x1000000284 || Dvm  ||   0x1000000324 || s5  || 0x1020000054
| SLPM_625.29 || Karaoke Revolution: Kazoku Idol Sengen || 08000000 88130000 ||  
|-
|-  
|   s6 ||  0x1000000160 || f22 || 0x1000000288 || Dvbm  ||   0x1000000328 || s6  || 0x1020000058
| SLPM_625.28 || Karaoke Revolution: Kazoku Idol Sengen (Bundle Edition) || 08000000 88130000 ||  
|-style="background-color:#EEEFF2"
|-
|   s7 ||  0x1000000170 || f23 || 0x100000028C || BadPAddr ||   0x100000032C ||   s7 || 0x102000005C
| SLPM_624.92 || Karaoke Revolution: Kids Song Selection || 08000000 88130000 ||  
|-
|-  
|   t8 || 0x1000000180 || f24 || 0x1000000290  || Debug  ||   0x1000000330 || t8  || 0x1020000060
| SLPM_624.91 || Mega Man: The Power Battle || 04000000 00200000 ||  
|-style="background-color:#EEEFF2"
|-
|   t9 ||  0x1000000190 || f25 || 0x1000000294 || Perf  ||   0x1000000334 || t9  || 0x1020000064
| SLPM_624.79 || Karaoke Revolution: J-Pop Vol.9 || 08000000 88130000 ||  
|-
|-  
|   k0 ||  0x10000001A0 || f26  || 0x1000000298 ||  Pcr0 ||    0x1000000338 || k0 ||  0x1020000068
| SLPM_624.64 || Pop'n Taisen Pazurudame Online || 08000000 401F0000 ||  
|-style="background-color:#EEEFF2"
|-
|  k1 ||  0x10000001B0 || f27  || 0x100000029C  ||  Pcr1 ||    0x100000033C ||  k1 ||  0x102000006C
| SLPM_624.57 || Karaoke Revolution: Snow & Party || 08000000 88130000 ||  
|-
|-  
|  gp ||  0x10000001C0 || f28  ||  0x10000002A0 || TagLo  ||    0x1000000340 ||  gp  || 0x1020000070
| SLPM_624.56 || Karaoke Revolution: J-Pop Vol.8 || 08000000 88130000 ||  
|-style="background-color:#EEEFF2"
|-
|  sp ||  0x10000001D0 ||  f29 || 0x10000002A4  || TagHi  ||    0x1000000344 ||  sp  || 0x1020000074
| SLPM_624.55 || Karaoke Revolution: J-Pop Vol.7 || 08000000 88130000 ||  
|-
|-  
|  fp ||  0x10000001E0 ||  f30 || 0x10000002A8  ||  ErrorEPC ||    0x1000000348 ||  fp || 0x1020000078
| SLPM_624.54 || Karaoke Revolution: J-Pop Vol.6 || 08000000 88130000 ||  
|-style="background-color:#EEEFF2"
|-
|  ra || 0x10000001F0  || f31  || 0x10000002AC ||  Rsvd31 ||    0x100000034C ||    ra || 0x102000007C
| SLPM_624.51 || Karaoke Revolution: J-Pop Vol.5 || 08000000 88130000 ||  
|-
|-  
|  hi/hi1 (2x 64bit) || 0x1000000200  ||  fACC ||  0x10000002B0 || {{cellcolors|#7698FF|#000000}}COP0 additional registers  || ||    pc || 0x102000008C   
| SLPM_624.50 || Karaoke Revolution: Anime Song Selection || 08000000 88130000 ||  
|-style="background-color:#EEEFF2"
|-
|  lo/lo1 (2x 64bit) || 0x1000000210  || {{cellcolors|#7698FF|#000000}}FPU CTRL (FCR) ||  || real Pcr0 ||  0x1000000350 ||  hi ||0x1020000090 ??
| SLPM_624.37 || Suisui Sweet: Amai Ai no Mitsukekata || 0B000000 00000040 ||  
|-
|-  
|  sa  ||  0x1000000220 ||  cp1cond  ||  0x10000002B4 || real Pcr1  || 0x1000000358  ||  lo  || 0x1020000094 ??
| SLPM_624.14 || Karaoke Revolution: Dreams & Memories || 08000000 88130000 ||  
|--style="background-color:#EEEFF2"
|-
|    ||  ||  fpu ver ||  0x10000002B8   
| SLPM_623.83 || Karaoke Revolution: Night Selection 2003 || 08000000 88130000 ||  
|-
|-  
|  ||  || fpu sticky  ||  0x10000002BC   
| SLPM_623.82 || Karaoke Revolution: Love & Ballad || 08000000 88130000 ||  
|--style="background-color:#EEEFF2"
|-
|  ||  ||  fpu ctrl ||  0x10000002C0
| SLPM_623.81 || Karaoke Revolution: J-Pop Vol.4 || 08000000 88130000 ||  
|-
|-  
|  ||  ||  2CF unknown ||  0x10000002C4 
| SLPM_623.80 || Karaoke Revolution: J-Pop Vol.3 || 08000000 88130000 ||  
|-
|-  
|}
| SLPM_623.79 || Karaoke Revolution: J-Pop Vol.2   || 08000000 88130000 ||  
 
===Emulator related regs===
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! {{cellcolors|#7698FF|#000000}}"Fake" registers !! Address !! Notes 
|-
| (?) || 0x1000000360      || Locking the value seems to cause a crash.
|-style="background-color:#8b9dc3"
|Current PC<br>(4 Bytes) || 0x1000000368 || Shows the current offset that's being executed by the EE.<br>
Updated only on branch/jump tests, unless commands such as --ee-pc-coherency  or --ee-insn-flush-pc are used.<br>
Then updates are instant, right when instructions are executed. <br>
Commonly used by sceners as a way of finding troublesome offsets. Can be found in some emulators here too: 0x8000016830
|-
| (?) || 0x100000036C ||
Updated on branch/jump instructions, emulator seems to use it to store next address that will be executed.
At least in recompiler to interpreter fallback mode. During tests it shows 0x80000184
|-
| Delta counter  || 0x1000000370  ||<pre>(Passed cycles, likely decrementer).
Evt check is performed on branch test when 0.
Fastforwardclock set this to 0,
advanceclock subtract value from this fake reg)</pre>
|-
|Cycles ||0x1000000378||
|-
| (?) || 0x1000000384 || <pre>Address when last exception occurred on r5900.
This register most of times will hold last executed syscall address,
sometimes last tlb miss or break(if "as nop" is disabled).
Unlike the pc, this one doesn't change after a crash and has much lower latency.
Thus meaning it's better at diagnosing problems.</pre>
|-
|}
 
===VU0 Registers===
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
{| class=wikitable style="border: none; background: none;"
! scope=col | Register
! scope=col | W
! scope=col | Z
! scope=col | Y
! scope=col | X
| rowspan=900 style="border: none; background: none;"|
! scope=col | Register
! scope=col | W
! scope=col | Z
! scope=col | Y
! scope=col | X
|-
| vf00 || 0x103000000C|| 0x1030000008 || 0x1030000004||  0x1030000000|| vf17 || 0x103000011C|| 0x1030000118|| 0x1030000114||  0x1030000110
|-style="background-color:#EEEFF2"
| vf01 || 0x103000001C || 0x1030000018|| 0x1030000014||0x1030000010 || vf18 || 0x103000012C|| 0x1030000128|| 0x1030000124|| 0x1030000120
|-
| vf02 || 0x103000002C|| 0x1030000028|| 0x1030000024|| 0x1030000020|| vf19 ||0x103000013C|| 0x1030000138|| 0x1030000134|| 0x1030000130
|-style="background-color:#EEEFF2"
| vf03 || 0x103000003C||0x1030000038 ||0x1030000034 || 0x1030000030|| vf20 || 0x103000014C|| 0x1030000148|| 0x1030000144|| 0x1030000140
|-
| vf04 || 0x103000004C|| 0x1030000048|| 0x1030000044|| 0x1030000040|| vf21 || 0x103000015C||0x1030000158 || 0x1030000154|| 0x1030000150
|-style="background-color:#EEEFF2"
| vf05 || 0x103000005C|| 0x1030000058|| 0x1030000054|| 0x1030000050|| vf22 || 0x103000016C|| 0x1030000168|| 0x1030000164|| 0x1030000160
|-
| vf06 || 0x103000006C|| 0x1030000068 || 0x1030000064|| 0x1030000060|| vf23 || 0x103000017C||0x1030000178 || 0x1030000174||0x1030000170
|-style="background-color:#EEEFF2"
| vf07 || 0x103000007C|| 0x1030000078 || 0x1030000074|| 0x1030000070|| vf24 ||0x103000018C || 0x1030000188|| 0x1030000184||0x1030000180
|-
| vf08 || 0x103000008C|| 0x1030000088|| 0x1030000084|| 0x1030000080|| vf25 || 0x103000019C || 0x1030000198||0x1030000194 ||0x1030000190
|-style="background-color:#EEEFF2"
| vf09 || 0x103000009C ||0x1030000098||0x1030000094 || 0x1030000090|| vf26 || 0x10300001AC|| 0x10300001A8||0x10300001A4||0x10300001A0
|-
| vf10|| 0x10300000AC|| 0x10300000A8|| 0x10300000A4|| 0x10300000A0|| vf27 || 0x10300001BC||0x10300001B8 ||0x10300001B4||0x10300001B0
|-style="background-color:#EEEFF2"
| vf11 || 0x10300000BC|| 0x10300000B8|| 0x10300000B4||0x10300000B0 || vf28 || 0x10300001CC||0x10300001C8 || 0x10300001C4||0x10300001C0
|-
| vf12 ||0x10300000CC || 0x10300000C8||0x10300000C4 || 0x10300000C0|| vf29 || 0x10300001DC||0x10300001D8 ||0x10300001D4 ||0x10300001D0
|-style="background-color:#EEEFF2"
| vf13 || 0x10300000DC|| 0x10300000D8|| 0x10300000D4|| 0x10300000D0|| vf30 || 0x10300001EC|| 0x10300001E8|| 0x10300001E4||0x10300001E0
|-
| vf14 || 0x10300000EC||0x10300000E8 || 0x10300000E4|| 0x10300000E0|| vf31 || 0x10300001FC|| 0x10300001F8|| 0x10300001F4||0x10300001F0
|-style="background-color:#EEEFF2"
| vf15 || 0x10300000FC|| 0x10300000F8|| 0x10300000F4|| 0x10300000F0|| ACC || 0x103000020C|| 0x1030000208||0x1030000204 || 0x1030000200
|-
| vf16 || 0x103000010C ||0x1030000108 || 0x1030000104|| 0x1030000100
|-
|}
 
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
{| class=wikitable style="border: none; background: none;"
! scope=col | Register
! scope=col | Address
| rowspan=900 style="border: none; background: none;"|
! scope=col | Register
! scope=col | Address
|-  
|-  
| vi00 || 0x1030000210 ||Status|| 0x1030000310??
| SLPM_623.69 || Karaoke Revolution: J-Pop Vol.1 || 08000000 88130000 ||  
|-style="background-color:#EEEFF2"
|-  
| vi01 || 0x1030000220  || MACflag || 0x1030000320??
| SLPM_622.39 || Supercar Street Challenge || 0A000000 00030800 ||  
|-
|-  
|  vi02|| 0x1030000230  || Clipflag || 0x1030000330??
| SLPM_621.54 || DDRMAX Dance Dance Revolution 6thMix || 08000000 5E1A0000 ||  
|-style="background-color:#EEEFF2"
|  vi03||  0x1030000240 || c2c19 || 0x1030000340??
|-
|  vi04||  0x1030000250 ||  R || 0x1030000350??
|-style="background-color:#EEEFF2"
|  vi05|| 0x1030000260  || I || 0x1030000360
|-
|  vi06||  0x1030000270 || Q || 0x1030000590
|-style="background-color:#EEEFF2"
|  vi07||  0x1030000280 || c2c23 || 0x1030000380??
|-
|  vi08||  0x1030000290 || c2c24 || 0x1030000390??
|-style="background-color:#EEEFF2"
|  vi09|| 0x10300002A0 || c2c25 || 0x10300003A0??
|-
| vi10||  0x10300002B0 || TPC || 0x10300003B0
|-style="background-color:#EEEFF2"
| vi11||   0x10300002C0|| CMSAR0 || 0x10300003C0??
|-
|  vi12||  0x10300002D0 || FBRST || 0x10300003D0
|-style="background-color:#EEEFF2"
|  vi13||  0x10300002E0 || VPU-STAT || 0x10300003E0??
|-
|  vi14||  0x10300002F0 || CMSAR1 || 0x10300003F0??
|-style="background-color:#EEEFF2"
|  vi15||  0x1030000300 || c2c30 || 0x1030000400??
|-
|}
===VU1 Registers===
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
{| class=wikitable style="border: none; background: none;"
! scope=col | Register
! scope=col | W
! scope=col | Z
! scope=col | Y
! scope=col | X
| rowspan=900 style="border: none; background: none;"|
! scope=col | Register
! scope=col | W
! scope=col | Z
! scope=col | Y
! scope=col | X
|-
| vf00 || 0x104000000C|| 0x1040000008 || 0x1040000004||  0x1040000000|| vf17 || 0x104000011C|| 0x1040000118|| 0x1040000114||  0x1040000110
|-style="background-color:#EEEFF2"
| vf01 || 0x104000001C || 0x1040000018|| 0x1040000014||0x1040000010 || vf18 || 0x104000012C|| 0x1040000128|| 0x1040000124|| 0x1040000120
|-
| vf02 || 0x104000002C|| 0x1040000028|| 0x1040000024|| 0x1040000020|| vf19 ||0x104000013C|| 0x1040000138|| 0x1040000134|| 0x1040000130
|-style="background-color:#EEEFF2"
| vf03 || 0x104000003C||0x1040000038 ||0x1040000034 || 0x1040000030|| vf20 || 0x104000014C|| 0x1040000148|| 0x1040000144|| 0x1040000140
|-
| vf04 || 0x104000004C|| 0x1040000048|| 0x1040000044|| 0x1040000040|| vf21 || 0x104000015C||0x1040000158 || 0x1040000154|| 0x1040000150
|-style="background-color:#EEEFF2"
| vf05 || 0x104000005C|| 0x1040000058|| 0x1040000054|| 0x1040000050|| vf22 || 0x104000016C|| 0x1040000168|| 0x1040000164|| 0x1040000160
|-
| vf06 || 0x104000006C|| 0x1040000068 || 0x1040000064|| 0x1040000060|| vf23 || 0x104000017C||0x1040000178 || 0x1040000174||0x1040000170
|-style="background-color:#EEEFF2"
| vf07 || 0x104000007C|| 0x1040000078 || 0x1040000074|| 0x1040000070|| vf24 ||0x104000018C || 0x1040000188|| 0x1040000184||0x1040000180
|-
| vf08 || 0x104000008C|| 0x1040000088|| 0x1040000084|| 0x1040000080|| vf25 || 0x104000019C || 0x1040000198||0x1040000194 ||0x1040000190
|-style="background-color:#EEEFF2"
| vf09 || 0x104000009C ||0x1040000098||0x1040000094 || 0x1040000090|| vf26 || 0x10400001AC|| 0x10400001A8||0x10400001A4||0x10400001A0
|-
| vf10|| 0x10400000AC|| 0x10400000A8|| 0x10400000A4|| 0x10400000A0|| vf27 || 0x10400001BC||0x10400001B8 ||0x10400001B4||0x10400001B0
|-style="background-color:#EEEFF2"
| vf11 || 0x10400000BC|| 0x10400000B8|| 0x10400000B4||0x10400000B0 || vf28 || 0x10400001CC||0x10400001C8 || 0x10400001C4||0x10400001C0
|-
| vf12 ||0x10400000CC || 0x10400000C8||0x10400000C4 || 0x10400000C0|| vf29 || 0x10400001DC||0x10400001D8 ||0x10400001D4 ||0x10400001D0
|-style="background-color:#EEEFF2"
| vf13 || 0x10400000DC|| 0x10400000D8|| 0x10400000D4|| 0x10400000D0|| vf30 || 0x10400001EC|| 0x10400001E8|| 0x10400001E4||0x10400001E0
|-
| vf14 || 0x10400000EC||0x10400000E8 || 0x10400000E4|| 0x10400000E0|| vf31 || 0x10400001FC|| 0x10400001F8|| 0x10400001F4||0x10400001F0
|-style="background-color:#EEEFF2"
| vf15 || 0x10400000FC|| 0x10400000F8|| 0x10400000F4|| 0x10400000F0|| ACC || 0x104000020C|| 0x1040000208||0x1040000204 || 0x1040000200
|-
| vf16 || 0x104000010C ||0x1040000108 || 0x1040000104|| 0x1040000100
|-
|}
 
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
{| class=wikitable style="border: none; background: none;"
! scope=col | Register
! scope=col | Address
| rowspan=900 style="border: none; background: none;"|
! scope=col | Register
! scope=col | Address
|-  
|-  
| vi00 || 0x1040000210 ||vi16|| 0x1040000310??
| SLPM_621.35 || Final Fantasy: XI (Beta Version) || 00000000 000000A0 ||
|-style="background-color:#EEEFF2"
|-
| vi01 || 0x1040000220  || vi17 || 0x1040000320??
| SLPM_621.25 || Gauntlet: Dark Legacy || 09000000 0500472B ||
|-
|-
|  vi02|| 0x1040000230  || vi18 || 0x1040000330??
| SLPM_621.25 || Gauntlet: Dark Legacy || 08000000 1C0C0000 ||
|-style="background-color:#EEEFF2"
|-
|  vi03||  0x1040000240 || vi19 || 0x1040000340??
| SLPM_621.24 || Ready 2 Rumble Boxing: Round 2 || 08000000 88130000 ||
|-
|-
|  vi04||  0x1040000250 ||  vi20 || 0x1040000350??
| SLPM_621.05 || Taikou Risshiden IV || 09000000 0A00472B ||
|-style="background-color:#EEEFF2"
|-
|  vi05|| 0x1040000260  || vi21 || 0x1040000360
| SLPM_620.62 || Gitaroo Man One || 0A000000 40050800 ||
|-
|-
|  vi06||  0x1040000270 || vi22 || 0x1040000370??
| SLPM_620.42 || Kurogane no Houkou: Warship Commander || 01000000 00300000 ||
|-style="background-color:#EEEFF2"
|-
|  vi07||  0x1040000280 || vi23 || 0x1040000380??
| SLES_537.96 || FIFA Street 2 || 01000000 00180000 ||
|-
|-
|  vi08||  0x1040000290 || vi24 || 0x1040000390??
| SLES_537.55 || Castlevania: Curse of Darkness || 04000000 10000000 ||
|-style="background-color:#EEEFF2"
|-
|  vi09||  0x10400002A0 || vi25 || 0x10400003A0??
| SLES_536.68 || Micro Machines v4 || 01000000 01080000 ||
|-
|-
|  vi10||  0x10400002B0 || vi26 || 0x10400003B0
| SLES_530.37 || Super Monkey Ball Deluxe || 01000000 02080000 ||
|-style="background-color:#EEEFF2"
|-
|  vi11||  0x10400002C0|| vi27 || 0x10400003C0??
| SLES_520.97 || SWAT: Global Strike Force || 01000000 00080000 ||
|-
|-
|  vi12||  0x10400002D0 || vi28 || 0x10400003D0
| SLES_519.97 || SWAT: Global Strike Team || 01000000 00080000 ||
|-style="background-color:#EEEFF2"
|-
|  vi13||  0x10400002E0 || vi29 || 0x10400003E0??
| SLES_518.44 || Time Crisis 3 || 01000000 00080000 ||
|-
|-
|  vi14||  0x10400002F0 || vi30 || 0x10400003F0??
| SLES_518.41 || SpyHunter 2 || 01000000 00080000 ||
|-style="background-color:#EEEFF2"
|-
|  vi15||  0x1040000300 || vi31 || 0x1040000400??
| SLES_514.79 || Def Jam Vendetta || 01000000 02080000 ||
|-
|-
|}
| SLES_512.82 || Tiger Woods PGA Tour 2003 || 0A000000 E8030800 ||
 
|-
=Open CL and Floats=
| SLES_507.29 || || 0A000000 E8030800 ||
 
|-
PS4 native Floating point support and OpenCL info, for both CPU and GPU. The understanding of floating point conversion is very important for emulating the PS2.
| SLES_507.28 || Tiger Woods PGA Tour 2002 || 0A000000 E8030800 ||
<br>Info found below came from this: [https://gist.github.com/masterzorag/06cadbc5fbe7d3375704fc52518f434e#file-gistfile1-md gist]
|-
<br>There you can find more info about PS4's OpenCL.
| SLES_506.28 || Simpsons: Road Rage || 01000000 00080000 ||
 
|-
==CPU==
| SLES_506.08 || Shadow Man 2: The Second Coming || 0A000000 00060800 ||
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
|-
! Info !! Value
| SLES_505.40 || Simpsons: Road Rage || 01000000 00080000 ||
|-
|-
| Device Name                                ||  CXD90026AG - DG1002FGF84HT
| SLES_504.46 || Shadow Man 2: The Second Coming || 0A000000 00060800 ||
|-
|-
| Device Vendor                              ||  AuthenticAMD
| SLES_503.64 || City Crisis || 0A000000 B80B0800 ||
|-
|-
| Device Vendor ID                            ||  0x1022
| SLES_500.62 || Orphen: Scion of Sorcery || 08000000 1C0C0000 ||
|-
|-
| Device OpenCL C Version                    ||  OpenCL C 1.2 pocl
| SLES_500.48 || Donald Duck: Quack Attack || 01000000 00080000 ||
|-
|-
| Device Type                                ||  CPU
| SCUS_972.69 || Final Fantasy XI [Disc 2] || 02000000 0B000000 ||
|-
|-
| Max compute units                          ||  8
| SCUS_971.67 || PaRappa the Rapper 2 || 04000000 00200000 ||
|-
|-
| Max work item dimensions                    ||  3
| SCPS_200.39 ||  || 00000000 00000004 ||
|-
|-
| Max work item sizes                        ||  4096x4096x4096
| SCPS_175.01 || Linux (for PlayStation2) Release 1.0 || 00000000 000000A0 ||
|-
|-
| Max work group size                        ||  4096
| SCPS_170.01 || Gran Turismo 4 || 0B000000 00000010 ||
|-
|-
| Preferred work group size multiple          ||  8
| SCPS_150.39 || Lifeline || 0A000000 00030800 ||
|-
|-
! Half-precision Floating-point support      !!  (n/a)
| SCPS_150.38 || Lifeline || 0A000000 00030800 ||
|-
|-
! Single-precision Floating-point support    !!  (core)
| SCPS_110.22 || Yoake no Mariko 2nd Act || 01000000 00180000 ||
|-
|-
| Denormals                                  || Yes
| SCPS_110.21 || Yoake no Mariko 2nd Act (Limited Edition) || 01000000 00180000 ||
|-
|-
| Infinity and NANs                          || Yes
| SCPS_110.18 || Yoake no Mariko || 01000000 00180000 ||
|-
|-
| Round to nearest                            || Yes
| SCPS_110.10 || Yoake no Mariko (Performance Pack Edition) || 01000000 00180000 ||
|-
|-
| Round to zero                              || Yes
| SCPS_110.01 || I.Q. Remix || 00000000 000000A0 ||
|-
|-
| Round to infinity                          || Yes
| SCPN_601.60 || PlayStation BB Navigator (Version 0.32) || 00000000 000000A0 ||
|-
|-
| IEEE754-2008 fused multiply-add            || No
| SCPN_601.50 || PlayStation BB Navigator (Version 0.31) || 00000000 000000A0 ||
|-
|-
| Support is emulated in software            || No
| SCPN_601.40 || PlayStation BB Navigator (Version 0.30) || 00000000 000000A0 ||
|-
|-
| Correctly-rounded divide and sqrt operations|| Yes
| SCPN_601.30 || PlayStation BB Navigator (Version 0.20) || 00000000 000000A0 ||
|-
|-
! Double-precision Floating-point support    !!  (cl_khr_fp64)
| SCPN_601.01 |
|-
| Denormals                                  || Yes
|-
| Infinity and NANs                          || Yes
|-
| Round to nearest                            || Yes
|-
| Round to zero                              || Yes
|-
| Round to infinity                          || Yes
|-
| IEEE754-2008 fused multiply-add            || Yes
|-
| Support is emulated in software            || No
|-
! Execution capabilities                      !!
|-
| Run OpenCL kernels                          || Yes
|-
| Run native kernels                          || Yes
|-
| SPIR versions                              || 1.2
|-
| Device Extensions                          ||  <div align="left"><pre> cl_khr_byte_addressable_store
cl_khr_global_int32_base_atomics
cl_khr_global_int32_extended_atomics
cl_khr_local_int32_base_atomics
cl_khr_local_int32_extended_atomics
cl_khr_3d_image_writes
cl_khr_spir
cl_khr_fp64
cl_khr_int64_base_atomics
cl_khr_int64_extended_atomics </pre></div>
|-
|}
 
==GPU==
 
{| cellspacing="0" cellpadding="2" border="1" class="wikitable" style="text-align: center;"
! Info !! Values
|-
|Device Name                                  ||  AMD LIVERPOOL
|-
|Device Vendor                                ||  AMD
|-
|Device Vendor ID                            ||    0x1002
|-
|Device Version                                ||  OpenCL 1.1
|-
|Device OpenCL C Version                      ||  OpenCL C 1.1
|-
|Device Type                                  ||  GPU
|-
|Max compute units                            ||  18
|-
|Max work item dimensions                      || 3
|-
|Max work item sizes                          ||  256x256x256
|-
|Max work group size                            || 256
|-
|Compiler Available                              || Yes
|-
|Preferred work group size multiple            ||  64
|-
!Half-precision Floating-point support        !!  (cl_khr_fp16)
|-
|Denormals                                    || No
|-
|Infinity and NANs                            || Yes
|-
|Round to nearest                             


keyboard.ESCAPE = 0x1000
keyboard.SLASH = 0x1001
keyboard.SEPARATOR = 0x1002 -- backslash or pipe (\|)
keyboard.BACKQUOTE = 0x1003
keyboard.PAGEDOWN = 0x1004
keyboard.PAGEUP = 0x1005
keyboard.F1 = 0x1006
keyboard.F2 = 0x1007
keyboard.F3 = 0x1008
keyboard.F4 = 0x1009
keyboard.F5 = 0x100a
keyboard.F6 = 0x100b
keyboard.F7 = 0x100c
keyboard.F8 = 0x100d
keyboard.F9 = 0x100e
keyboard.F10 = 0x100f
keyboard.F11 = 0x1010
keyboard.F12 = 0x1011
</pre>
</pre>
'''ps2.lua'''
<pre>
require("ee-gpr-alias")
require("utils")
MipsInsn = {}
MipsInsn.IsAddi = function(insn) return (insn & 0xfc000000) == 0x20000000 end -- addi rt,rs,simm
MipsInsn.IsAddiu = function(insn) return (insn & 0xfc000000) == 0x24000000 end -- addiu rt,rs,simm
MipsInsn.IsBeq = function(insn) return (insn & 0xfc000000) == 0x10000000 end -- beq rs,rt,off
MipsInsn.IsJ = function(insn) return (insn & 0xfc000000) == 0x08000000 end -- j target
MipsInsn.IsJal = function(insn) return (insn & 0xfc000000) == 0x0c000000 end -- jal target
MipsInsn.IsJr = function(insn) return (insn & 0xfc1fffff) == 0x00000008 end -- jr rs
MipsInsn.IsLq = function(insn) return (insn & 0xfc000000) == 0x78000000 end -- lq rt,simm(rs)
MipsInsn.IsLd = function(insn) return (insn & 0xfc000000) == 0xdc000000 end -- ld rt,simm(rs)
MipsInsn.IsLw = function(insn) return (insn & 0xfc000000) == 0x8c000000 end -- lw rt,simm(rs)
MipsInsn.IsSq = function(insn) return (insn & 0xfc000000) == 0x7c000000 end -- sq rt,simm(rs)
MipsInsn.IsSd = function(insn) return (insn & 0xfc000000) == 0xfc000000 end -- sd rt,simm(rs)
MipsInsn.IsSw = function(insn) return (insn & 0xfc000000) == 0xac000000 end -- sw rt,simm(rs)
MipsInsn.IsEnd = function(insn) return (insn & 0xfc00003f) == 0x0000000d end
MipsInsn.GetRt = function(insn) return (insn >> 16) & 0x1f end
MipsInsn.GetRs = function(insn) return (insn >> 21) & 0x1f end
MipsInsn.GetSimm = function(insn) return ((insn << 48) >> 48) end
MipsInsn.GetOff = function(insn) return MipsInsn.GetSimm(insn) end
MipsInsn.GetTarget = function(insn) return insn & 0x3ffffff end
-- return FIFO queue of stack trace
-- the queue item is { caller-addr, return-from }
--
-- example:
--    print("=== stack trace ===")
--   local stack_trace = MipsStackTrace(eeObj, eeObj.GetPc()+4, eeObj.GetGpr(gpr.ra), eeObj.GetGpr(gpr.sp))
--   while not stack_trace:isEmpty() do
-- local caller = stack_trace:dequeue()
-- print( string.format(" 0x%08x [will return from : %x]", caller[1], caller[2]) )
--   end
--
-- NOTE: you must +4 against GetPc() if you in a EE/IOP hook.
-- Because EE/IOP jit executed the instruction at the address already and it might affect $sp or $ra.
--
-- obj : eeObj or iopObj
-- pc  : current pc (from GetPC or readout from thread context)
-- ra  : current ra (from GetGpr or readout from thread context)
-- sp  : current sp (from GetGpr or readout from thread context)
MipsStackTrace = function (obj, pc, ra, sp, depth)
  local max_depth = depth or 10 -- max trace depth
  local n_j = 1
  local jmax = {}
  local depth = 0
  local bdl_count = 0
  local new_pc    = 0
  local icount    = 0
  local result = Queue.new()
  local pushed_ra = Queue.new()
  while depth < max_depth and icount < 2048 do
  -- TODO: error checks
  if (pc & 3) ~= 0 then
return result
  end
  pc = pc & 0x01ffffff
  sp = sp & 0x01ffffff
  local insn = obj.ReadMem32(pc)
  -- print(string.format("trace .. pc=%x insn=%x", pc, insn))
  -- result:enqueue( { pc, insn } )
  if MipsInsn.IsJr(insn) and MipsInsn.GetRs(insn) == gpr.ra then
bdl_count = 1
depth = depth + 1
new_pc = ra
-- print(string.format("jr ra : ra=%x", ra))
icount = 0
-- print(string.format("enqueue caller pc=%x ret addr=%x", new_pc-8, pc))
result:enqueue( {new_pc-8, pc} ) -- {return-addr, where-from}
  elseif MipsInsn.IsAddiu(insn) and MipsInsn.GetRt(insn) == gpr.sp and MipsInsn.GetRs(insn) == gpr.sp then
sp = sp + MipsInsn.GetSimm(insn) -- ((insn<<48) >>48)
-- print(string.format("addiu sp,sp,** : new sp = %x", sp))
  elseif MipsInsn.IsLq(insn) or MipsInsn.IsLd(insn) or MipsInsn.IsLw(insn) then
if MipsInsn.GetRt(insn) == gpr.ra and MipsInsn.GetRs(insn) == gpr.sp then
-- the code might push $ra on the stack after start pc.
-- in such case, we must not retrieve $ra value from the memory.
if pushed_ra:isEmpty() then
  local imm = MipsInsn.GetSimm(insn) -- ((insn<<48) >>48)
  -- print(string.format("retrieve ra from stack(%x) : sp=%x imm=%x", sp+imm, sp, imm))
  ra = obj.ReadMem32(sp + imm)
  -- print(string.format("load ra,%x(sp) : sp = %x+%x, ra = %x", imm, sp, imm, ra))
else
  -- print(string.format("retrieve ra from pushed one"))
  pushed_ra:dequeue()
end
end
  elseif MipsInsn.IsSq(insn) or MipsInsn.IsSd(insn) or MipsInsn.IsSw(insn) then
if MipsInsn.GetRt(insn) == gpr.ra and MipsInsn.GetRs(insn) == gpr.sp then
pushed_ra:enqueue(pc);
end
  elseif MipsInsn.IsJ(insn) then -- j **
local imm = MipsInsn.GetTarget(insn)
imm = imm << 2
if pc == imm then
-- jump to self? maybe we can ignore it.
else
new_pc = imm
-- print(string.format("j ** : new_pc = %x", new_pc))
bdl_count = 1
for t=1, n_j do
  if jmax[t] == new_pc then
  return result -- closed loop
  end
end
if n_j > 1024 then
  return result -- jump buffer overflow
end
jmax[n_j] = new_pc
n_j = n_j + 1
end
  elseif MipsInsn.IsBeq(insn) and MipsInsn.GetRs(insn) == gpr.zero then -- beq zero,**
local offset = MipsInsn.GetOff(insn) -- ((insn<<48) >> 48)
offset = offset << 2
new_pc = pc + 4 + offset
if pc == new_pc then
-- jump to self? maybe we can ignore it
else
-- print(string.format("beq zero,** : new_pc=%x", new_pc))
bdl_count = 1
for t = 1, n_j do
  if jmax[t] == new_pc then
  return result
  end
end
if n_j > 1024 then
  return result
end
jmax[n_j] = new_pc
n_j = n_j + 1
end
  elseif MipsInsn.IsEnd(insn) then -- end
-- print(string.format("end"))
return result
  elseif MipsInsn.IsJal(insn) then -- jal **
local imm = insn & 0x03ffffff
imm = imm << 2
-- print(string.format("jal ** : addr = %x", imm))
-- call
  end
  icount = icount + 1
  pc = pc + 4
  -- -- print(string.format("bdl_count=%d", bdl_count))
  if bdl_count > 0 then
if bdl_count == 2 then
pc = new_pc
bdl_count = 0
else
bdl_count = bdl_count + 1
end
  end
  end
  return result
end
PS2 = {}
PS2.GetCurrentThread = function(eeObj) return eeObj.ReadMem32(0x12fac) end
PS2.GetThreads = function(eeObj)
  local EE_THREAD_BASE = 0x18000
  local EE_NUM_THREADS = 0x100
  local th = EE_THREAD_BASE
  local result = Queue.new()
  for t = 0, EE_NUM_THREADS-1 do
  -- 0 : node_prev
  -- 4 : node_next
  -- 8 : status
  -- 12: pc
  -- 16: sp
  -- 20: gp
  -- 24: init_pri
  -- 26: curr_pri
  -- 28: wstat
  -- 32: waitId
  -- 36: wakeupCount
  -- 40: attr
  -- 44: option
  -- 48: func
  -- 52: argc
  -- 56: args
  -- 60: stack
  -- 64: size
  -- 68: root
  -- 72: endOfHeap
  local status = eeObj.ReadMem32(th + 8)
  if status ~= 0 then
local id    = t
local pri  = eeObj.ReadMem16(th + 26)
local gp    = eeObj.ReadMem32(th + 20)
local pc    = eeObj.ReadMem32(th + 12)
local sp    = eeObj.ReadMem32(th + 16)
result:enqueue( {id=id, status=status, pri=pri, gp=gp, pc=pc, sp=sp} )
  end
  th = th + 76
  end
  return result
end
</pre>
'''utils.lua'''
<pre>
-- utility classes/functions
-- Stack
-- ex:
-- my_stack = Stack.new()
--  my_stack:push( val )
-- print( my_stack:pop( val ) )
Stack = {}
function Stack.new()
  local obj = { buff = {} }
  return setmetatable(obj, {__index = Stack})
end
function Stack:push(x)
  table.insert(self.buff, x)
end


function Stack:pop()
==Links==
  return table.remove(self.buff)
*More info: http://www.psx-place.com/threads/research-ps2-emulator-configuration-on-ps4.16131/
end
*More emulator configurations examples: https://www.psdevwiki.com/ps4/Talk:PS2_Classics_Emulator_Compatibility_List
 
function Stack:top()
  return self.buff[#self.buff]
end
 
function Stack:isEmpty()
  return #self.buff == 0
end
 
 
-- Queue
-- ex:
-- my_queue = Queue.new()
-- my_queue:enqueue( val )
-- print( my_queue:dequeue(val) )
Queue = {}
 
function Queue.new()
  local obj = { buff = {} }
  return setmetatable(obj, {__index = Queue})
end
 
function Queue:enqueue(x)
  table.insert(self.buff, x)
end
 
function Queue:dequeue()
  return table.remove(self.buff, 1)
end
 
function Queue:top()
  if #self.buff > 0 then
    return self.buff[1]
  end
end
 
function Queue:isEmpty()
  return #self.buff == 0
end
</pre>


=Links=
*[https://psi-rockin.github.io/ps2tek/ Ps2 Hardware Documentation]
*[https://pastebin.com/yf802Up3 GS title fix guide]
*[https://www.psdevwiki.com/ps3/PS2_Custom_Configs PS3 custom configs]
*[http://www.psx-place.com/threads/research-ps2-emulator-configuration-on-ps4.16131/ A place for research and sharing successful configurations for the emulator]
*[https://www.psdevwiki.com/ps4/Talk:PS2_Classics_Emulator_Compatibility_List Configuration examples]
*[https://www.romhacking.net/utilities/692/ PS2DIS, a very helpful tool for debugging executables]
*[https://forums.pcsx2.net/Thread-Fixing-unplayable-games A thread filled with patches for ps2 games]
{{Reverse Engineering}}
{{Reverse Engineering}}
<noinclude>
<noinclude>[[Category:Main]]</noinclude>
[[Category:Main]]
</noinclude>
Please note that all contributions to PS4 Developer wiki are considered to be released under the GNU Free Documentation License 1.2 (see PS4 Developer wiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

To protect the wiki against automated edit spam, we kindly ask you to solve the following hCaptcha:

Cancel Editing help (opens in new window)