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

Function TGE

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

* Register trap * * Format: OP rs, rt * *********************************************************/

Source from the content-addressed store, hash-verified

1246* Format: OP rs, rt *
1247*********************************************************/
1248void TGE() { if (cpuRegs.GPR.r[_Rs_].SD[0] >= cpuRegs.GPR.r[_Rt_].SD[0]) trap(_TrapCode_); }
1249void TGEU() { if (cpuRegs.GPR.r[_Rs_].UD[0] >= cpuRegs.GPR.r[_Rt_].UD[0]) trap(_TrapCode_); }
1250void TLT() { if (cpuRegs.GPR.r[_Rs_].SD[0] < cpuRegs.GPR.r[_Rt_].SD[0]) trap(_TrapCode_); }
1251void TLTU() { if (cpuRegs.GPR.r[_Rs_].UD[0] < cpuRegs.GPR.r[_Rt_].UD[0]) trap(_TrapCode_); }

Callers

nothing calls this directly

Calls 1

trapFunction · 0.85

Tested by

no test coverage detected