REGIMM OPCODES
| 1053 | void CACHE( std::string& output ) { output += "cache ---";/*_sap("cache\t%s, 0x%04X(%s)") GPR_REG[DECODE_RT], DECODE_IMMED, GPR_REG[DECODE_RS]); */} |
| 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); } |
nothing calls this directly
no test coverage detected