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

Function TEQ

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

Source from the content-addressed store, hash-verified

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_); }
1252void TEQ() { if (cpuRegs.GPR.r[_Rs_].SD[0] == cpuRegs.GPR.r[_Rt_].SD[0]) trap(_TrapCode_); }
1253void TNE() { if (cpuRegs.GPR.r[_Rs_].SD[0] != cpuRegs.GPR.r[_Rt_].SD[0]) trap(_TrapCode_); }
1254
1255/*********************************************************

Callers

nothing calls this directly

Calls 1

trapFunction · 0.85

Tested by

no test coverage detected