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

Function BEQL

pcsx2/Interpreter.cpp:408–419  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

406
407
408void BEQL() // Branch if Rs == Rt
409{
410 if(cpuRegs.GPR.r[_Rs_].SD[0] == cpuRegs.GPR.r[_Rt_].SD[0])
411 {
412 doBranch(_BranchTarget_);
413 }
414 else
415 {
416 cpuRegs.pc +=4;
417 intEventTest();
418 }
419}
420
421void BNEL() // Branch if Rs != Rt
422{

Callers

nothing calls this directly

Calls 2

intEventTestFunction · 0.85
doBranchFunction · 0.70

Tested by

no test coverage detected