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

Function BLEZL

pcsx2/Interpreter.cpp:434–445  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

432}
433
434void BLEZL() // Branch if Rs <= 0
435{
436 if(cpuRegs.GPR.r[_Rs_].SD[0] <= 0)
437 {
438 doBranch(_BranchTarget_);
439 }
440 else
441 {
442 cpuRegs.pc +=4;
443 intEventTest();
444 }
445}
446
447void BGTZL() // Branch if Rs > 0
448{

Callers

nothing calls this directly

Calls 2

intEventTestFunction · 0.85
doBranchFunction · 0.70

Tested by

no test coverage detected