-
Notifications
You must be signed in to change notification settings - Fork 0
/
instructions.h
359 lines (266 loc) · 7.32 KB
/
instructions.h
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
#pragma once
#include "gb.h"
#include <cstdint>
#include <memory>
#include <optional>
#include <string>
namespace instruction {
enum : int {
NoInstruction = 0,
Nop,
SpecialAdd,
Inc,
Dec,
RotateA,
Stop,
DAA,
CPL,
SetClearCarryFlag,
Load,
HALT,
ALU,
PopPush,
Ret,
Jump,
Call,
RST,
EnableDisableInterrupts,
CB,
Unsupported
};
}
enum class Condition { Unconditional, NotZero, Zero, NotCarry, Carry };
class Instruction {
protected:
bool finished = false;
public:
virtual void amend(uint8_t val) { printf("Added value %02X\n", val); }
virtual bool execute(CPU *cpu) {
printf("Executed instruction\n");
return false;
}
bool isFinished() { return finished; }
virtual std::string getName() { return "BaseInstruction"; }
virtual int getType() { return instruction::NoInstruction; }
};
namespace instruction {
std::unique_ptr<Instruction> decode(uint8_t opcode);
}
class Halt : public Instruction {
public:
Halt();
static std::unique_ptr<Instruction> decode(uint8_t opcode);
virtual bool execute(CPU *cpu) override;
virtual std::string getName() override;
virtual int getType() override;
};
class DAA : public Instruction {
public:
DAA();
static std::unique_ptr<Instruction> decode(uint8_t opcode);
virtual bool execute(CPU *cpu) override;
virtual std::string getName() override;
virtual int getType() override;
};
class Complement : public Instruction {
public:
Complement();
static std::unique_ptr<Instruction> decode(uint8_t opcode);
virtual bool execute(CPU *cpu) override;
virtual std::string getName() override;
virtual int getType() override;
};
class SetClearCarryFlag : public Instruction {
bool shouldSet;
public:
SetClearCarryFlag(bool shouldSet);
static std::unique_ptr<Instruction> decode(uint8_t opcode);
virtual bool execute(CPU *cpu) override;
virtual std::string getName() override;
virtual int getType() override;
};
class SpecialAdd : public Instruction {
uint8_t reg;
uint8_t immediate;
uint8_t wastedCycles;
public:
SpecialAdd(uint8_t reg);
virtual void amend(uint8_t val) override;
static std::unique_ptr<Instruction> decode(uint8_t opcode);
virtual bool execute(CPU *cpu) override;
virtual std::string getName() override;
virtual int getType() override;
};
class EnableDisableInterrupts : public Instruction {
bool enable;
public:
EnableDisableInterrupts(bool enable);
static std::unique_ptr<Instruction> decode(uint8_t opcode);
virtual bool execute(CPU *cpu) override;
virtual std::string getName() override;
virtual int getType() override;
};
class RotateA : public Instruction {
bool isLeft;
bool throughCarry;
public:
RotateA(bool isLeft, bool throughCarry);
static std::unique_ptr<Instruction> decode(uint8_t opcode);
virtual bool execute(CPU *cpu) override;
virtual std::string getName() override;
virtual int getType() override;
};
class PopPush : public Instruction {
uint8_t reg;
bool isPop;
uint8_t currentByte;
bool hasWastedCycle;
public:
PopPush(uint8_t reg, bool isPop);
static std::unique_ptr<Instruction> decode(uint8_t opcode);
virtual bool execute(CPU *cpu) override;
virtual std::string getName() override;
virtual int getType() override;
};
class Ret : public Instruction {
uint8_t currentByte;
uint16_t address;
Condition condition;
bool checkedCondition;
bool enableInterrupts;
bool wastedCycle;
public:
Ret(Condition condition, bool enableInterrupts);
static std::unique_ptr<Instruction> decode(uint8_t opcode);
virtual bool execute(CPU *cpu) override;
virtual std::string getName() override;
virtual int getType() override;
};
class Call : public Instruction {
uint8_t needsBytes;
uint16_t address;
Condition condition;
uint8_t storedPCCount;
bool movedSP;
public:
Call(Condition condition);
static std::unique_ptr<Instruction> decode(uint8_t opcode);
virtual void amend(uint8_t val) override;
virtual bool execute(CPU *cpu) override;
virtual std::string getName() override;
virtual int getType() override;
};
class IncDec : public Instruction {
bool increment;
uint8_t destination;
bool isBigRegister;
uint16_t address;
bool gotAddress;
uint8_t storedValue;
bool retrievedStoredValue;
public:
IncDec(bool increment, uint8_t destination, bool isBigRegister);
static std::unique_ptr<Instruction> decode(uint8_t opcode);
virtual bool execute(CPU *cpu) override;
virtual std::string getName() override;
virtual int getType() override;
};
class ExtendedInstruction : public Instruction {
uint8_t instruction;
uint16_t valueAtHL;
bool gotValueAtHL;
uint8_t result;
bool shouldWrite;
public:
ExtendedInstruction();
static std::unique_ptr<Instruction> decode(uint8_t opcode);
virtual void amend(uint8_t val) override;
virtual bool execute(CPU *cpu) override;
virtual std::string getName() override;
virtual int getType() override;
};
class RST : public Instruction {
uint8_t n;
uint8_t state;
public:
RST(uint8_t n);
static std::unique_ptr<Instruction> decode(uint8_t opcode);
virtual bool execute(CPU *cpu) override;
virtual std::string getName() override;
virtual int getType() override;
};
class ALU : public Instruction {
uint8_t operation;
uint8_t destination;
uint8_t source;
uint16_t address;
uint8_t immediate;
bool takesImmediate;
public:
ALU(bool takesImmediate, uint8_t operation, uint8_t source);
static std::unique_ptr<Instruction> decode(uint8_t opcode);
virtual void amend(uint8_t val) override;
virtual bool execute(CPU *cpu) override;
virtual std::string getName() override;
virtual int getType() override;
};
class Load : public Instruction {
uint16_t immediate;
bool is16Bit;
uint8_t needsBytes;
uint8_t destination;
uint8_t source;
uint16_t address;
bool loadedAddress;
uint8_t operation;
bool isMemoryLoad;
uint8_t direction;
bool isC;
bool actingOnSP;
bool writesSP;
uint8_t currentByte;
public:
Load();
Load(uint8_t operation);
Load(uint8_t reg, bool is16Bit, int dummy);
Load(uint8_t destination, uint8_t source);
Load(uint8_t direction, bool isC, bool is16Bit, bool actingOnSP);
static std::unique_ptr<Instruction> decode(uint8_t opcode);
virtual void amend(uint8_t val) override;
virtual bool execute(CPU *cpu) override;
virtual std::string getName() override;
virtual int getType() override;
};
class Jump : public Instruction {
uint16_t addr;
uint8_t needsBytes;
bool isDisplacement;
Condition condition;
bool checkedCondition;
bool jumpsToHL;
public:
Jump();
Jump(bool isDisplacement, Condition condition);
static std::unique_ptr<Instruction> decode(uint8_t opcode);
virtual void amend(uint8_t val) override;
virtual bool execute(CPU *cpu) override;
virtual std::string getName() override;
virtual int getType() override;
};
class Nop : public Instruction {
public:
Nop();
static std::unique_ptr<Instruction> decode(uint8_t opcode);
virtual bool execute(CPU *cpu) override;
virtual std::string getName() override;
virtual int getType() override;
};
class Unsupported : public Instruction {
public:
Unsupported() {}
static std::unique_ptr<Instruction> decode(uint8_t opcode) {
return std::make_unique<Unsupported>();
}
virtual std::string getName() override { return "Unsupported"; }
virtual int getType() override { return instruction::Unsupported; }
};