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

Function TLTI

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

Source from the content-addressed store, hash-verified

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(); }
1263void TGEIU() { if (cpuRegs.GPR.r[_Rs_].UD[0] >= (u64)_Imm_) trap(); }

Callers

nothing calls this directly

Calls 1

trapFunction · 0.85

Tested by

no test coverage detected