-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgb.cpp
512 lines (447 loc) · 9.4 KB
/
gb.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
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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
//http://marc.rawer.de/Gameboy/Docs/GBCPUman.pdf
//http://gameboy.mongenel.com/dmg/opcodes.html
//http://imrannazar.com/Gameboy-Z80-Opcode-Map
#include "gb.h"
#include <memory>
#include "memory.h"
#include "display.h"
#include "input.h"
#include <cassert>
#include "glwt.h"
#ifdef _WIN32
#include <windows.h>
char buffer[256];
void logf(char const* const format, ...)
{
va_list args;
va_start(args, format);
u32 num = _vsnprintf_s(buffer, 256, format, args);
va_end(args);
buffer[num] = '\0';
OutputDebugStringA(buffer);
}
#endif
GB gb;
#define INST(disassembly, opCodeLength, function, opCodeTicks) disassembly,
const char* instructionDisassembly[256] =
{
#include "opcodes.h"
};
#undef INST
#define EXT_INST(code, disassembly, function) disassembly,
const char* extendedInstructionDisassembly[256] =
{
#include "extendedopcodes.h"
};
#undef EXT_INST
#define INST(disassembly, opCodeLength, function, opCodeTicks) opCodeLength,
const u8 instructionOpCodeLength[256] =
{
#include "opcodes.h"
};
#undef INST
//http://marc.rawer.de/Gameboy/Docs/GBCPUman.pdf
//http://www.devrs.com/gb/files/opcodes.html
//http://bgb.bircd.org/pandocs.htm
void GB_load(u8* rom, u32 romLength)
{
memset(gb.memory, 0, sizeof(gb.memory));
memcpy(gb.memory, rom, min(0x7FFF, romLength));
initMemoryBanks(rom, romLength);
gb.af = 0x1B0;
gb.bc = 0x13;
gb.de = 0xD8;
gb.hl = 0x14D;
gb.sp = 0xFFFE;
gb.pc = 0x100;
gb.interruptsEnabled = false;
gb.stopped = false;
memset(gb.gpu.framebuffer, 0, sizeof(gb.gpu.framebuffer));
gb.gpu.lcdcStatus = 0;
gb.gpu.mode = 2;
gb.gpu.modeclock = 0;
gb.gpu.scanline = 0;
gb.gpu.scanlinecompare = 0;
gb.joypadInput = 0xFF;
writeMemory(0xFF05, 0x00); // TIMA
writeMemory(0xFF06, 0x00); // TMA
writeMemory(0xFF07, 0x00); // TAC
writeMemory(0xFF10, 0x80); // NR10
writeMemory(0xFF11, 0xBF); // NR11
writeMemory(0xFF12, 0xF3); // NR12
writeMemory(0xFF14, 0xBF); // NR14
writeMemory(0xFF16, 0x3F); // NR21
writeMemory(0xFF17, 0x00); // NR22
writeMemory(0xFF19, 0xBF); // NR24
writeMemory(0xFF1A, 0x7F); // NR30
writeMemory(0xFF1B, 0xFF); // NR31
writeMemory(0xFF1C, 0x9F); // NR32
writeMemory(0xFF1E, 0xBF); // NR33
writeMemory(0xFF20, 0xFF); // NR41
writeMemory(0xFF21, 0x00); // NR42
writeMemory(0xFF22, 0x00); // NR43
writeMemory(0xFF23, 0xBF); // NR30
writeMemory(0xFF24, 0x77); // NR50
writeMemory(0xFF25, 0xF3); // NR51
writeMemory(0xFF26, 0xF1); // NR52
writeMemory(0xFF40, 0x91); // LCDC
writeMemory(0xFF42, 0x00); // SCY
writeMemory(0xFF43, 0x00); // SCX
writeMemory(0xFF45, 0x00); // LYC
writeMemory(0xFF47, 0xFC); // BGP
writeMemory(0xFF48, 0xFF); // OBP0
writeMemory(0xFF49, 0xFF); // OBP1
writeMemory(0xFF4A, 0x00); // WY
writeMemory(0xFF4B, 0x00); // WX
writeMemory(0xFFFF, 0x00); // IE
}
void undefined()
{
logf("\t\taf = %04X bc = %04X de = %04X hl = %04X sp = %04X pc = %04X z = %d n = %d h = %d c = %d\n", gb.af, gb.bc, gb.de, gb.hl, gb.sp, gb.pc, gb.f.z, gb.f.n, gb.f.h, gb.f.c);
logf("Unimplemented!\n");
assert(false);
}
inline void xx()
{
undefined();
}
inline void cpl()
{
gb.a = ~gb.a;
gb.f.n = true;
gb.f.h = true;
}
inline void call(u16& nn)
{
writeMemory16(gb.sp, gb.pc);
gb.pc = nn;
gb.sp -= 2;
}
inline void halt()
{
undefined();
}
inline void stop()
{
gb.stopped = true;
}
inline void ret()
{
gb.sp += 2;
gb.pc = readMemory16(gb.sp);
}
inline void rst(u8 n)
{
writeMemory16(gb.sp, gb.pc);
gb.pc = n;
gb.sp -= 2;
}
inline void scf()
{
undefined();
}
inline void ccf()
{
undefined();
}
inline void add8(u8 reg)
{
gb.f.h = gb.a > 0 && (reg & 0xF) > (0xF - gb.a);
gb.f.c = gb.a > 0 && reg > (0xFF - gb.a);
gb.a += (u8)reg;
gb.f.z = gb.a == 0;
gb.f.n = false;
}
inline void addhl16(u16 reg)
{
gb.f.h = gb.hl > 0 && (reg & 0xFFF) > (0xFFF - gb.hl);
gb.f.c = gb.hl > 0 && reg > (0xFFFF - gb.hl);
gb.hl += reg;
gb.f.n = false;
}
inline void adc8(u8 reg)
{
gb.f.h = gb.a > 0 && ((reg + gb.f.c) & 0xF) > (0xF - gb.a);
gb.f.c = gb.a > 0 && (reg + gb.f.c) > (0xFF - gb.a);
gb.a += (u8)reg;
gb.a += (u8)gb.f.c;
gb.f.z = gb.a == 0;
gb.f.n = false;
}
inline void sub8(u8 reg)
{
gb.a -= (u8)reg;
gb.f.h = gb.a > 0 && (reg & 0xF) > (0xF - gb.a);
gb.f.c = gb.a > 0 && reg > (0xFF - gb.a);
gb.f.z = gb.a == 0;
gb.f.n = true;
}
inline void sbc8(u8 reg)
{
undefined();
}
inline void inc16(u16& reg)
{
gb.f.h = reg == ((u16)-1);
reg += 1;
gb.f.z = reg == 0;
gb.f.n = false;
}
inline void inc8(u8& reg)
{
gb.f.h = reg & 0xF == 0xF;
reg += 1;
gb.f.z = reg == 0;
gb.f.n = false;
}
inline void dec16(u16& reg)
{
gb.f.h = reg == 0;
reg -= 1;
gb.f.z = reg == 0;
gb.f.n = true;
}
inline void dec8(u8& reg)
{
gb.f.h = reg == 0;
reg -= 1;
gb.f.z = reg == 0;
gb.f.n = true;
}
inline void or8(u8 reg)
{
gb.a = gb.a | reg;
gb.f.flags = 0;
gb.f.z = gb.a == 0;
}
inline void cp8(u8 val)
{
gb.f.z = gb.a == val;
gb.f.n = true;
gb.f.c = gb.a < val;
}
inline void xor8(u8 reg)
{
gb.a = gb.a ^ reg;
gb.f.flags = 0;
gb.f.z = gb.a == 0;
}
inline void and8(u8 reg)
{
gb.a = gb.a & reg;
gb.f.z = gb.a == 0;
gb.f.n = false;
gb.f.h = true;
gb.f.c = false;
}
inline void swap8(u8& reg)
{
u8 tmp = reg;
reg = (tmp >> 4) | ((tmp & 0xF) << 4);
gb.f.flags = 0;
gb.f.z = reg == 0;
}
inline void pop16(u16& reg)
{
gb.sp += 2;
reg = readMemory16(gb.sp);
}
inline void push16(u16& reg)
{
writeMemory16(gb.sp, reg);
gb.sp -= 2;
}
inline void res8(const u8 bit, u8& reg)
{
reg = reg & ~(1 << bit);
}
inline void res8hl(const u8 bit)
{
u8 val = readMemory(gb.hl);
res8(bit, val);
writeMemory(gb.hl, val);
}
inline void set8(const u8 bit, u8& reg)
{
reg = reg | (1 << bit);
}
inline void set8hl(const u8 bit)
{
u8 val = readMemory(gb.hl);
set8(bit, val);
writeMemory(gb.hl, val);
}
inline void bit8(const u8 bit, u8 val)
{
gb.f.z = ((1 << bit) & val) == 0;
gb.f.n = false;
gb.f.h = true;
}
inline void sla8(u8& reg)
{
gb.f.flags = 0;
gb.f.c = (reg & 8) > 0;
reg = reg << 1;
gb.f.z = reg == 0;
}
inline void sra8(u8& reg)
{
undefined();
}
inline void srl8(u8& reg)
{
gb.f.n = false;
gb.f.h = false;
gb.f.c = reg & 0x1;
reg = reg >> 1;
}
inline void rr8(u8& reg)//rotate r right
{
gb.f.c = reg & 0x1;
reg = reg >> 1;
gb.f.z = reg == 0;
gb.f.n = false;
gb.f.h = false;
}
inline void rrc8(u8& reg)//rotate right carry
{
gb.f.c = reg & 0x1;
reg = reg >> 1 | (gb.f.c ? 0x80 : 0x0);
gb.f.z = reg == 0;
gb.f.n = false;
gb.f.h = false;
}
inline void rl8(u8& reg)//rotate r left
{
undefined();
}
inline void rlc8(u8& reg)//rotate left carry
{
gb.f.c = (reg & 0x80) > 0;
reg = (reg << 1);
if (gb.f.c)
reg |= 0x1;
gb.f.z = reg == 0;
gb.f.n = false;
gb.f.h = false;
}
// DAA table in page 110 of the official "Game Boy Programming Manual
// http://www.chrisantonellis.com/files/gameboy/gb-programming-manual.pdf
inline void daa()
{
bool carry = false;
if (!gb.f.n)
{
if (gb.f.c || gb.a > 0x99)
{
gb.a = gb.a + 0x60;
carry = true;
}
if (gb.f.h || gb.a & 0x0F > 0x09)
{
gb.a = gb.a + 0x06;
}
}
else if (gb.f.c)
{
carry = true;
if (gb.f.h)
gb.a = gb.a + 0x9A;
else
gb.a = gb.a + 0xA0;
}
else if (gb.f.h)
{
gb.a = gb.a + 0xFA;
}
gb.f.z = gb.a == 0;
gb.f.c = carry;
gb.f.h = false;
/*u32 a = gb.a;
if (!gb.f.n)
{
if (gb.f.h || (gb.a & 0xF) > 0x9)
a = gb.a + 0x06;
if (gb.f.c || gb.a > 0x9F)
a = gb.a + 0x60;
}
else
{
if (gb.f.h)
a = (gb.a - 6) & 0xFF;
if (gb.f.c)
a -= 0x60;
}
gb.f.c = (a & 0x100) == 0x100;
gb.a = a & 0xFF;
gb.f.z = gb.a == 0;*/
}
inline void extops()
{
u8 extopcode = gb.memory[gb.pc-1];
#define EXT_INST(code, disassembly, function) case code: function break;
switch (extopcode)
{
#include "extendedopcodes.h"
}
#undef INST
}
void GB_handleinterrupts()
{
if (gb.interruptFlag.vBlank && gb.interruptReg.vBlank)
{
gb.interruptFlag.vBlank = false;
gb.interruptsEnabled = false;
u16 loc = 0x40;
call(loc);
}
//else if remaining interrupts!!! (v. important)
}
const char* GB_disasm(u16 loc, u8& opcode, u16& nn, u8& opcodeLength)
{
opcode = gb.memory[loc];
opcodeLength = instructionOpCodeLength[opcode];
nn = 0;
if (opcodeLength == 2)
nn = gb.memory[loc + 1];
else if (opcodeLength == 3)
nn = gb.memory[loc + 1] | (gb.memory[loc + 2] << 8);
if (opcode == 0xCB)//extended opcodes
{
opcode = gb.memory[loc + 1];
return extendedInstructionDisassembly[opcode];
}
else
return instructionDisassembly[opcode];
}
bool GB_tick(i32& ticksElapsed)
{
//decode instruction
const u8 opcode = gb.memory[gb.pc];
if (gb.stopped)
{
gb.stopped = !(glwt_keydown['S'] || glwt_keydown['D'] || glwt_keydown['X'] || glwt_keydown['Z']);
}
else
{
u32 opcodeLength = instructionOpCodeLength[opcode];
if (opcodeLength == 2)
gb.nn = gb.memory[gb.pc + 1];
else if (opcodeLength == 3)
gb.nn = gb.memory[gb.pc + 1] | (gb.memory[gb.pc + 2] << 8);
//run instruction
gb.pc += opcodeLength;
#define INST(disassembly, opCodeLength, function, opCodeTicks) case __COUNTER__: function break;
switch (opcode)
{
#include "opcodes.h"
}
#undef INST
gb.f.top = 0;//the top 4 bits of the flags register is always 0
}
bool result = GB_gputick(opcode, ticksElapsed);
if (gb.interruptsEnabled)
GB_handleinterrupts();
GB_tickinput();
return result;
}