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

Function BLTZL

pcsx2/Interpreter.cpp:460–471  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

458}
459
460void BLTZL() // Branch if Rs < 0
461{
462 if(cpuRegs.GPR.r[_Rs_].SD[0] < 0)
463 {
464 doBranch(_BranchTarget_);
465 }
466 else
467 {
468 cpuRegs.pc +=4;
469 intEventTest();
470 }
471}
472
473void BGEZL() // Branch if Rs >= 0
474{

Callers

nothing calls this directly

Calls 2

intEventTestFunction · 0.85
doBranchFunction · 0.70

Tested by

no test coverage detected