MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / TGEI

Function TGEI

pcsx2/R5900OpcodeImpl.cpp:1259–1259  ·  view source on GitHub ↗

* Trap with immediate operand * * Format: OP rs, rt * *********************************************************/

Source from the content-addressed store, hash-verified

1257* Format: OP rs, rt *
1258*********************************************************/
1259void TGEI() { if (cpuRegs.GPR.r[_Rs_].SD[0] >= _Imm_) trap(); }
1260void TLTI() { if (cpuRegs.GPR.r[_Rs_].SD[0] < _Imm_) trap(); }
1261void TEQI() { if (cpuRegs.GPR.r[_Rs_].SD[0] == _Imm_) trap(); }
1262void TNEI() { if (cpuRegs.GPR.r[_Rs_].SD[0] != _Imm_) trap(); }

Callers

nothing calls this directly

Calls 1

trapFunction · 0.85

Tested by

no test coverage detected