| 852 | void LUI( std::string& output ) { _sap("lui\t%s, 0x%04X") GPR_REG[DECODE_RT], DECODE_IMMED); } |
| 853 | |
| 854 | void BEQL( std::string& output ) |
| 855 | { |
| 856 | int rs = DECODE_RS; |
| 857 | int rt = DECODE_RT; |
| 858 | |
| 859 | if (disSimplify && rs == rt) |
| 860 | disBranch(output, "bl"); |
| 861 | else if (disSimplify && rs == 0 && rt != 0) |
| 862 | disBranch(output, "beqzl", rt); |
| 863 | else if (disSimplify && rs != 0 && rt == 0) |
| 864 | disBranch(output, "beqzl", rs); |
| 865 | else |
| 866 | disBranch(output, "beql", rs, rt); |
| 867 | } |
| 868 | |
| 869 | void BNEL( std::string& output ) |
| 870 | { |
nothing calls this directly
no test coverage detected