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

Function BLTZALL

pcsx2/Interpreter.cpp:486–498  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

484}
485
486void BLTZALL() // Branch if Rs < 0 and link
487{
488 _SetLink(31);
489 if(cpuRegs.GPR.r[_Rs_].SD[0] < 0)
490 {
491 doBranch(_BranchTarget_);
492 }
493 else
494 {
495 cpuRegs.pc +=4;
496 intEventTest();
497 }
498}
499
500void BGEZALL() // Branch if Rs >= 0 and link
501{

Callers

nothing calls this directly

Calls 2

intEventTestFunction · 0.85
doBranchFunction · 0.70

Tested by

no test coverage detected