mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-19 17:30:56 +00:00
2ae4e8331e
Signed-off-by: Adrian.Conlon <adrian.conlon@arup.com>
36 lines
808 B
C++
36 lines
808 B
C++
#pragma once
|
|
|
|
#include "Memory.h"
|
|
#include "InputOutput.h"
|
|
#include "Intel8080.h"
|
|
#include "Profiler.h"
|
|
#include "EventArgs.h"
|
|
#include "Disassembler.h"
|
|
|
|
class Configuration;
|
|
|
|
class Board {
|
|
public:
|
|
Board(const Configuration& configuration);
|
|
|
|
EightBit::Memory& Memory() { return m_memory; }
|
|
EightBit::Intel8080& CPU() { return m_cpu; }
|
|
|
|
void initialise();
|
|
|
|
private:
|
|
const Configuration& m_configuration;
|
|
EightBit::Memory m_memory;
|
|
EightBit::InputOutput m_ports;
|
|
EightBit::Intel8080 m_cpu;
|
|
EightBit::Disassembler m_disassembler;
|
|
EightBit::Profiler m_profiler;
|
|
|
|
void Cpu_ExecutingInstruction_Cpm(const EightBit::Intel8080& cpu);
|
|
|
|
void Cpu_ExecutingInstruction_Debug(const EightBit::Intel8080& cpuEvent);
|
|
void Cpu_ExecutingInstruction_Profile(const EightBit::Intel8080& cpuEvent);
|
|
|
|
void bdos();
|
|
};
|