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

QVector<QString> InstructionNop::to_strs() {
    QVector<QString> str;
    str << QString("nop");
    return str;
}