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

Function BGEZALL

pcsx2/Interpreter.cpp:500–512  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

498}
499
500void BGEZALL() // Branch if Rs >= 0 and link
501{
502 _SetLink(31);
503 if(cpuRegs.GPR.r[_Rs_].SD[0] >= 0)
504 {
505 doBranch(_BranchTarget_);
506 }
507 else
508 {
509 cpuRegs.pc +=4;
510 intEventTest();
511 }
512}
513
514/*********************************************************
515* Register jump *

Callers

nothing calls this directly

Calls 2

intEventTestFunction · 0.85
doBranchFunction · 0.70

Tested by

no test coverage detected