aboutsummaryrefslogtreecommitdiff
path: root/qtmips_machine/instructions/nop.cpp
blob: 5fd5e47de8e65a274e05ae3efd4ca06fd29336fe (plain)
1
2
3
4
5
6
7
#include "nop.h"

std::vector<std::string> InstructionNop::to_strs() {
    std::vector<std::string> str;
    str.push_back("nop");
    return str;
}