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

Function BNEL

pcsx2/DebugTools/DisR5900asm.cpp:869–880  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

867}
868
869void BNEL( std::string& output )
870{
871 int rs = DECODE_RS;
872 int rt = DECODE_RT;
873
874 if (disSimplify && rs == 0 && rt != 0)
875 disBranch(output, "bnezl", rt);
876 else if (disSimplify && rs != 0 && rt == 0)
877 disBranch(output, "bnezl", rs);
878 else
879 disBranch(output, "bnel", rs, rt);
880}
881
882void BLEZL( std::string& output ) { disBranch(output, "blezl", DECODE_RS); }
883void BGTZL( std::string& output ) { disBranch(output, "bgtzl", DECODE_RS); }

Callers

nothing calls this directly

Calls 1

disBranchFunction · 0.85

Tested by

no test coverage detected