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

Function BEQ

pcsx2/Interpreter.cpp:331–337  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

329*********************************************************/
330
331void BEQ() // Branch if Rs == Rt
332{
333 if (cpuRegs.GPR.r[_Rs_].SD[0] == cpuRegs.GPR.r[_Rt_].SD[0])
334 doBranch(_BranchTarget_);
335 else
336 intEventTest();
337}
338
339void BNE() // Branch if Rs != Rt
340{

Callers

nothing calls this directly

Calls 2

intEventTestFunction · 0.85
doBranchFunction · 0.70

Tested by

no test coverage detected