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

Function BNEL

pcsx2/Interpreter.cpp:421–432  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

419}
420
421void BNEL() // Branch if Rs != Rt
422{
423 if(cpuRegs.GPR.r[_Rs_].SD[0] != cpuRegs.GPR.r[_Rt_].SD[0])
424 {
425 doBranch(_BranchTarget_);
426 }
427 else
428 {
429 cpuRegs.pc +=4;
430 intEventTest();
431 }
432}
433
434void BLEZL() // Branch if Rs <= 0
435{

Callers

nothing calls this directly

Calls 2

intEventTestFunction · 0.85
doBranchFunction · 0.70

Tested by

no test coverage detected