| 786 | //********************* Standard Opcodes*********************** |
| 787 | void J( std::string& output ) { output += "j\t"; jump_decode(output);} |
| 788 | void JAL( std::string& output ) { output += "jal\t"; jump_decode(output);} |
| 789 | |
| 790 | void BEQ( std::string& output ) |
| 791 | { |
nothing calls this directly
no test coverage detected