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

Function TEQI

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

Source from the content-addressed store, hash-verified

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(); }
1264void TLTIU() { 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