| 817 | |
| 818 | void BLEZ( std::string& output ) { disBranch(output, "blez", DECODE_RS); } |
| 819 | void BGTZ( std::string& output ) { disBranch(output, "bgtz", DECODE_RS); } |
| 820 | void ADDI( std::string& output ) { _sap("addi\t%s, %s, 0x%04X") GPR_REG[DECODE_RT], GPR_REG[DECODE_RS], DECODE_IMMED);} |
| 821 | |
| 822 | void ADDIU( std::string& output ) |
nothing calls this directly
no test coverage detected