2017-06-04 21:38:34 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
2017-10-28 13:08:07 +01:00
|
|
|
#include <cassert>
|
2017-06-04 21:38:34 +01:00
|
|
|
|
2017-09-01 16:41:50 +01:00
|
|
|
#include <IntelProcessor.h>
|
|
|
|
#include <Signal.h>
|
2017-10-19 22:43:09 +01:00
|
|
|
#include <Register.h>
|
2017-06-04 21:38:34 +01:00
|
|
|
|
2017-06-09 11:42:32 +01:00
|
|
|
namespace EightBit {
|
2017-09-07 01:15:28 +01:00
|
|
|
namespace GameBoy {
|
2017-10-19 22:43:09 +01:00
|
|
|
|
|
|
|
class Bus;
|
|
|
|
|
2017-12-10 21:41:48 +00:00
|
|
|
class LR35902 final : public IntelProcessor {
|
2017-09-07 01:15:28 +01:00
|
|
|
public:
|
|
|
|
enum StatusBits {
|
|
|
|
ZF = Bit7,
|
|
|
|
NF = Bit6,
|
|
|
|
HC = Bit5,
|
|
|
|
CF = Bit4,
|
|
|
|
};
|
|
|
|
|
|
|
|
LR35902(Bus& memory);
|
|
|
|
|
|
|
|
Signal<LR35902> ExecutingInstruction;
|
2017-09-23 22:56:11 +01:00
|
|
|
Signal<LR35902> ExecutedInstruction;
|
|
|
|
|
2018-10-27 19:23:02 +01:00
|
|
|
auto clockCycles() const {
|
2017-11-03 22:05:01 +00:00
|
|
|
return cycles() * 4;
|
2017-09-23 22:56:11 +01:00
|
|
|
}
|
2017-09-07 01:15:28 +01:00
|
|
|
|
2018-11-25 19:02:11 +00:00
|
|
|
virtual register16_t& AF() final;
|
|
|
|
virtual register16_t& BC() final;
|
|
|
|
virtual register16_t& DE() final;
|
|
|
|
virtual register16_t& HL() final;
|
2017-09-07 01:15:28 +01:00
|
|
|
|
|
|
|
protected:
|
2018-12-29 19:17:36 +00:00
|
|
|
virtual int execute() final;
|
2017-12-10 21:41:48 +00:00
|
|
|
virtual int step() final;
|
2017-09-07 01:15:28 +01:00
|
|
|
|
2018-08-25 13:35:53 +01:00
|
|
|
virtual void handleRESET() final;
|
|
|
|
virtual void handleINT() final;
|
2018-08-25 01:57:22 +01:00
|
|
|
|
2017-09-07 01:15:28 +01:00
|
|
|
private:
|
|
|
|
Bus& m_bus;
|
|
|
|
|
2018-06-16 00:55:32 +01:00
|
|
|
register16_t af = 0xffff;
|
|
|
|
register16_t bc = 0xffff;
|
|
|
|
register16_t de = 0xffff;
|
|
|
|
register16_t hl = 0xffff;
|
2017-09-07 01:15:28 +01:00
|
|
|
|
2017-11-11 11:12:09 +00:00
|
|
|
bool m_ime = false;
|
|
|
|
bool m_stopped = false;
|
2017-09-07 01:15:28 +01:00
|
|
|
|
2017-11-11 11:12:09 +00:00
|
|
|
bool m_prefixCB = false;
|
2017-09-07 01:15:28 +01:00
|
|
|
|
|
|
|
bool& IME() { return m_ime; }
|
|
|
|
|
2018-10-27 19:23:02 +01:00
|
|
|
auto R(const int r) {
|
2018-06-23 16:43:05 +01:00
|
|
|
ASSUME(r >= 0);
|
|
|
|
ASSUME(r <= 7);
|
2017-09-07 01:15:28 +01:00
|
|
|
switch (r) {
|
|
|
|
case 0:
|
|
|
|
return B();
|
|
|
|
case 1:
|
|
|
|
return C();
|
|
|
|
case 2:
|
|
|
|
return D();
|
|
|
|
case 3:
|
|
|
|
return E();
|
|
|
|
case 4:
|
|
|
|
return H();
|
|
|
|
case 5:
|
|
|
|
return L();
|
|
|
|
case 6:
|
2019-03-02 21:58:34 +00:00
|
|
|
return busRead(HL());
|
2017-09-07 01:15:28 +01:00
|
|
|
case 7:
|
2018-06-23 16:43:05 +01:00
|
|
|
return A();
|
2017-12-10 21:41:48 +00:00
|
|
|
default:
|
|
|
|
UNREACHABLE;
|
2017-09-07 01:15:28 +01:00
|
|
|
}
|
2017-06-09 11:42:32 +01:00
|
|
|
}
|
2017-09-07 01:15:28 +01:00
|
|
|
|
2018-06-23 16:43:05 +01:00
|
|
|
void R(const int r, const uint8_t value) {
|
|
|
|
ASSUME(r >= 0);
|
|
|
|
ASSUME(r <= 7);
|
2017-09-07 01:15:28 +01:00
|
|
|
switch (r) {
|
|
|
|
case 0:
|
|
|
|
B() = value;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
C() = value;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
D() = value;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
E() = value;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
H() = value;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
L() = value;
|
|
|
|
break;
|
|
|
|
case 6:
|
2019-03-02 21:58:34 +00:00
|
|
|
busWrite(HL(), value);
|
2017-09-07 01:15:28 +01:00
|
|
|
break;
|
|
|
|
case 7:
|
2018-06-23 16:43:05 +01:00
|
|
|
A() = value;
|
2017-09-07 01:15:28 +01:00
|
|
|
break;
|
2017-12-10 21:41:48 +00:00
|
|
|
default:
|
|
|
|
UNREACHABLE;
|
2017-09-07 01:15:28 +01:00
|
|
|
}
|
2017-08-06 17:06:48 +01:00
|
|
|
}
|
2017-09-07 01:15:28 +01:00
|
|
|
|
2018-10-27 19:23:02 +01:00
|
|
|
auto& RP(const int rp) {
|
2018-06-23 16:43:05 +01:00
|
|
|
ASSUME(rp >= 0);
|
|
|
|
ASSUME(rp <= 3);
|
2017-09-07 01:15:28 +01:00
|
|
|
switch (rp) {
|
|
|
|
case 0b00:
|
|
|
|
return BC();
|
|
|
|
case 0b01:
|
|
|
|
return DE();
|
|
|
|
case 0b10:
|
|
|
|
return HL();
|
|
|
|
case 0b11:
|
|
|
|
return SP();
|
|
|
|
default:
|
2017-10-02 16:47:05 +01:00
|
|
|
UNREACHABLE;
|
2017-09-07 01:15:28 +01:00
|
|
|
}
|
2017-06-09 11:42:32 +01:00
|
|
|
}
|
2017-09-07 01:15:28 +01:00
|
|
|
|
2018-10-27 19:23:02 +01:00
|
|
|
auto& RP2(const int rp) {
|
2018-06-23 16:43:05 +01:00
|
|
|
ASSUME(rp >= 0);
|
|
|
|
ASSUME(rp <= 3);
|
2017-09-07 01:15:28 +01:00
|
|
|
switch (rp) {
|
|
|
|
case 0b00:
|
|
|
|
return BC();
|
|
|
|
case 0b01:
|
|
|
|
return DE();
|
|
|
|
case 0b10:
|
|
|
|
return HL();
|
|
|
|
case 0b11:
|
|
|
|
return AF();
|
|
|
|
default:
|
2017-10-02 16:47:05 +01:00
|
|
|
UNREACHABLE;
|
2017-09-07 01:15:28 +01:00
|
|
|
}
|
2017-06-09 11:42:32 +01:00
|
|
|
}
|
2017-06-04 21:38:34 +01:00
|
|
|
|
2018-10-27 19:23:02 +01:00
|
|
|
void adjustHalfCarryAdd(const uint8_t before, const uint8_t value, const int calculation) {
|
2018-06-23 16:43:05 +01:00
|
|
|
setFlag(F(), HC, calculateHalfCarryAdd(before, value, calculation));
|
2017-09-07 01:15:28 +01:00
|
|
|
}
|
2017-06-04 21:38:34 +01:00
|
|
|
|
2018-10-27 19:23:02 +01:00
|
|
|
void adjustHalfCarrySub(const uint8_t before, const uint8_t value, const int calculation) {
|
2018-06-23 16:43:05 +01:00
|
|
|
setFlag(F(), HC, calculateHalfCarrySub(before, value, calculation));
|
2017-09-07 01:15:28 +01:00
|
|
|
}
|
2017-06-04 21:38:34 +01:00
|
|
|
|
2018-06-23 16:43:05 +01:00
|
|
|
void subtract(uint8_t& operand, uint8_t value, int carry = 0);
|
2017-07-19 13:59:28 +01:00
|
|
|
|
2018-06-23 16:43:05 +01:00
|
|
|
void executeCB(int x, int y, int z, int p, int q);
|
|
|
|
void executeOther(int x, int y, int z, int p, int q);
|
2017-06-04 21:38:34 +01:00
|
|
|
|
2018-06-23 16:43:05 +01:00
|
|
|
void increment(uint8_t& operand);
|
|
|
|
void decrement(uint8_t& operand);
|
2017-06-04 21:38:34 +01:00
|
|
|
|
2017-09-07 01:15:28 +01:00
|
|
|
void stop() { m_stopped = true; }
|
|
|
|
void start() { m_stopped = false; }
|
|
|
|
bool stopped() const { return m_stopped; }
|
2017-08-30 23:17:34 +01:00
|
|
|
|
2017-09-07 01:15:28 +01:00
|
|
|
void di();
|
|
|
|
void ei();
|
2017-08-30 23:17:34 +01:00
|
|
|
|
2017-09-07 01:15:28 +01:00
|
|
|
void reti();
|
2017-06-04 21:38:34 +01:00
|
|
|
|
2018-06-23 16:43:05 +01:00
|
|
|
bool jrConditionalFlag(int flag);
|
|
|
|
bool returnConditionalFlag(int flag);
|
|
|
|
bool jumpConditionalFlag(int flag);
|
|
|
|
bool callConditionalFlag(int flag);
|
|
|
|
|
|
|
|
void add(register16_t& operand, register16_t value);
|
|
|
|
|
|
|
|
void add(uint8_t& operand, uint8_t value, int carry = 0);
|
|
|
|
void adc(uint8_t& operand, uint8_t value);
|
|
|
|
void sbc(uint8_t value);
|
|
|
|
void andr(uint8_t& operand, uint8_t value);
|
|
|
|
void xorr(uint8_t value);
|
|
|
|
void orr(uint8_t value);
|
|
|
|
void compare(uint8_t check, uint8_t value);
|
|
|
|
|
|
|
|
uint8_t rlc(uint8_t operand);
|
|
|
|
uint8_t rrc(uint8_t operand);
|
|
|
|
uint8_t rl(uint8_t operand);
|
|
|
|
uint8_t rr(uint8_t operand);
|
|
|
|
uint8_t sla(uint8_t operand);
|
|
|
|
uint8_t sra(uint8_t operand);
|
|
|
|
uint8_t srl(uint8_t operand);
|
|
|
|
|
2019-07-21 11:25:56 +01:00
|
|
|
void bit(int n, uint8_t operand);
|
2017-09-07 01:15:28 +01:00
|
|
|
static uint8_t res(int n, uint8_t operand);
|
|
|
|
static uint8_t set(int n, uint8_t operand);
|
2017-07-19 13:59:28 +01:00
|
|
|
|
2018-06-23 16:43:05 +01:00
|
|
|
void daa();
|
2017-07-19 13:59:28 +01:00
|
|
|
|
2018-06-23 16:43:05 +01:00
|
|
|
void scf();
|
|
|
|
void ccf();
|
|
|
|
void cpl();
|
2017-07-19 13:59:28 +01:00
|
|
|
|
2018-06-23 16:43:05 +01:00
|
|
|
uint8_t swap(uint8_t operand);
|
2017-09-07 01:15:28 +01:00
|
|
|
};
|
|
|
|
}
|
2017-06-09 11:42:32 +01:00
|
|
|
}
|