| 1054 | //************************REGIMM OPCODES*************************** |
| 1055 | void BLTZ( std::string& output ) { disBranch(output, "bltz", DECODE_RS); } |
| 1056 | void BGEZ( std::string& output ) { disBranch(output, "bgez", DECODE_RS); } |
| 1057 | void BLTZL( std::string& output ) { disBranch(output, "bltzl", DECODE_RS); } |
| 1058 | void BGEZL( std::string& output ) { disBranch(output, "bgezl", DECODE_RS); } |
| 1059 | void TGEI( std::string& output ) { _sap("tgei\t%s, 0x%04X") GPR_REG[DECODE_RS], DECODE_IMMED); } |
nothing calls this directly
no test coverage detected