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

Function BGEZL

pcsx2/Interpreter.cpp:473–484  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

471}
472
473void BGEZL() // Branch if Rs >= 0
474{
475 if(cpuRegs.GPR.r[_Rs_].SD[0] >= 0)
476 {
477 doBranch(_BranchTarget_);
478 }
479 else
480 {
481 cpuRegs.pc +=4;
482 intEventTest();
483 }
484}
485
486void BLTZALL() // Branch if Rs < 0 and link
487{

Callers

nothing calls this directly

Calls 2

intEventTestFunction · 0.85
doBranchFunction · 0.70

Tested by

no test coverage detected