mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-09 13:07:15 +00:00
0e7ad4dd01
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
36 lines
763 B
C++
36 lines
763 B
C++
#pragma once
|
|
|
|
//#include <string>
|
|
|
|
#include "Memory.h"
|
|
#include "InputOutput.h"
|
|
#include "Intel8080.h"
|
|
#include "Profiler.h"
|
|
#include "EventArgs.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::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();
|
|
};
|