aboutsummaryrefslogtreecommitdiff
path: root/qtmips_machine/instructions/nop.h
blob: 5c019fd9b8d27827a7cd279be077ed352350735c (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef NOP_H
#define NOP_H

#include "instruction.h"

class InstructionNop : public Instruction {
public:
    QVector<QString> to_strs();
};

#endif // NOP_H