-
Notifications
You must be signed in to change notification settings - Fork 0
/
Instruction.cpp
executable file
·68 lines (49 loc) · 1.1 KB
/
Instruction.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#ifndef INSTRUCTION_CPP
#define INSTRUCTION_CPP
#include <iostream>
#include <vector>
#include <string>
#include <cstdlib>
#include <cstring>
#include <sstream>
using namespace std;
class Instruction
{
public:
Instruction(int i, string &s, int a=-1, int b=-1)
{
index=i;
command=s;
A=a;
B=b;
}
//destructor
~Instruction() { /**/ }
//get instruction command part
string getCommand() { return command; }
//get instruction index
int getIndex() const { return index; }
//get instruction value A
int getA() const { return A; }
//get instruction value B
int getB() const { return B; }
string print()
{
stringstream ss;
ss << this->index << " - " << this->command << " " << this->A << " " << this->B << endl;
return ss.str();
}
private:
string command; //like "ADD" ,"SET" ...
int index;
int A;
int B;
};
/*
ostream& operator<<(ostream& out, const Instruction& ins)
{
out << ins.index << " - " << ins.command << " " << ins.A << " " << ins.B << endl;
return out;
}
*/
#endif