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

Function BGTZL

pcsx2/Interpreter.cpp:447–458  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

445}
446
447void BGTZL() // Branch if Rs > 0
448{
449 if(cpuRegs.GPR.r[_Rs_].SD[0] > 0)
450 {
451 doBranch(_BranchTarget_);
452 }
453 else
454 {
455 cpuRegs.pc +=4;
456 intEventTest();
457 }
458}
459
460void BLTZL() // Branch if Rs < 0
461{

Callers

nothing calls this directly

Calls 2

intEventTestFunction · 0.85
doBranchFunction · 0.70

Tested by

no test coverage detected