Adding internal registers for the CPU

This commit is contained in:
AnonymusRaccoon
2020-01-28 11:48:13 +01:00
parent ab71231fd8
commit 208d1b14d6
12 changed files with 215 additions and 61 deletions

View File

@@ -7,6 +7,7 @@
#include "../Memory/IMemory.hpp"
#include "../Memory/MemoryBus.hpp"
#include "../Models/Ints.hpp"
namespace ComSquare::CPU
{
@@ -15,54 +16,54 @@ namespace ComSquare::CPU
//! @brief The Accumulator
union {
struct {
unsigned char ah;
unsigned char al;
uint8_t ah;
uint8_t al;
};
unsigned short a;
uint16_t a;
};
//! @brief The Data Bank Register;
unsigned char dbr;
uint8_t dbr;
//! @brief The Direct register;
union {
struct {
unsigned char dh;
unsigned char dl;
uint8_t dh;
uint8_t dl;
};
unsigned short d;
uint16_t d;
};
//! @brief The program banK register;
unsigned char k;
uint8_t k;
//! @brief The Program Counter;
union {
struct {
unsigned char pch;
unsigned char pcl;
uint8_t pch;
uint8_t pcl;
};
unsigned short pc;
uint16_t pc;
};
//! @brief The Stack pointer
union {
struct {
unsigned char sh;
unsigned char sl;
uint8_t sh;
uint8_t sl;
};
unsigned short s;
uint16_t s;
};
//! @brief The X index register
union {
struct {
unsigned char xh;
unsigned char xl;
uint8_t xh;
uint8_t xl;
};
unsigned short x;
uint16_t x;
};
//! @brief The Y index register
union {
struct {
unsigned char yh;
unsigned char yl;
uint8_t yh;
uint8_t yl;
};
unsigned short y;
uint16_t y;
};
//! @brief The Processor status register;
@@ -90,24 +91,118 @@ namespace ComSquare::CPU
};
};
//! @brief Struct containing internal registers of the CPU.
struct InternalRegisters
{
//! @brief Interrupt Enable Register
uint8_t nmitimen;
//! @brief IO Port Write Register
uint8_t wrio;
//! @brief Multiplicand Register A
uint8_t wrmpya;
//! @brief Multiplicand Register B
uint8_t wrmpyb;
//! @brief Divisor & Dividend Registers (A - Low)
uint8_t wrdivl;
//! @brief Divisor & Dividend Registers (A - High)
uint8_t wrdivh;
//! @brief Divisor & Dividend Registers (B)
uint8_t wrdivb;
//! @brief IRQ Timer Registers (Horizontal - Low)
uint8_t htimel;
//! @brief IRQ Timer Registers (Horizontal - High)
uint8_t htimeh;
//! @brief IRQ Timer Registers (Vertical - Low)
uint8_t vtimel;
//! @brief IRQ Timer Registers (Vertical - High)
uint8_t vtimeh;
//! @brief DMA Enable Register
uint8_t mdmaen;
//! @brief HDMA Enable Register
uint8_t hdmaen;
//! @brief ROM Speed Register
uint8_t memsel;
//! @brief Interrupt Flag Registers
uint8_t rdnmi;
//! @brief Interrupt Flag Registers - TimeUp
uint8_t timeup;
//! @brief PPU Status Register
uint8_t hvbjoy;
//! @brief IO Port Read Register
uint8_t rdio;
//! @brief Divide Result Registers (can sometimes be used as multiplication result register) - LOW
uint8_t rddivl;
//! @brief Divide Result Registers (can sometimes be used as multiplication result register) - HIGH
uint8_t rddivh;
//! @brief Multiplication Result Registers (can sometimes be used as divide result register) - LOW
uint8_t rdmpyl;
//! @brief Multiplication Result Registers (can sometimes be used as divide result register) - HIGH
uint8_t rdmpyh;
//! @brief Controller Port Data Registers (Pad 1 - Low)
uint8_t joy1l;
//! @brief Controller Port Data Registers (Pad 1 - High)
uint8_t joy1h;
//! @brief Controller Port Data Registers (Pad 2 - Low)
uint8_t joy2l;
//! @brief Controller Port Data Registers (Pad 2 - High)
uint8_t joy2h;
//! @brief Controller Port Data Registers (Pad 3 - Low)
uint8_t joy3l;
//! @brief Controller Port Data Registers (Pad 3 - High)
uint8_t joy3h;
//! @brief Controller Port Data Registers (Pad 4 - Low)
uint8_t joy4l;
//! @brief Controller Port Data Registers (Pad 4 - High)
uint8_t joy4h;
};
//! @brief The main CPU
class CPU {
class CPU : IMemory {
private:
//! @brief All the registers of the CPU
Registers _registers;
//! @brief Is the CPU running in emulation mode (in 8bits)
bool _isEmulationMode;
//! @brief Internal registers of the CPU (accessible from the bus via addr $4200 to $421F).
InternalRegisters _internalRegisters;
//! @brief The memory bus to use for read/write.
std::shared_ptr<MemoryBus> _bus;
//! @brief Execute a single instruction.
//! @return The number of CPU cycles that the instruction took.
int executreInstruction();
int executeInstruction();
public:
explicit CPU(std::shared_ptr<MemoryBus> bus);
//! @brief This function continue to execute the Cartridge code.
//! @return The number of CPU cycles that elapsed
int update();
//! @brief Read from the internal CPU register.
//! @param addr The address to read from. The address 0x0 should refer to the first byte of the register.
//! @throw InvalidAddress will be thrown if the address is more than $1F (the number of register).
//! @return Return the value of the register.
uint8_t read(uint24_t addr) override;
//! @brief Write data to the internal CPU register.
//! @param addr The address to write to. The address 0x0 should refer to the first byte of register.
//! @param data The new value of the register.
//! @throw InvalidAddress will be thrown if the address is more than $1F (the number of register).
void write(uint24_t addr, uint8_t data) override;
};
}