2017-06-05 21:39:15 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2017-09-07 00:04:09 +00:00
|
|
|
#include <Ram.h>
|
|
|
|
#include <Bus.h>
|
|
|
|
#include <InputOutput.h>
|
|
|
|
#include <Profiler.h>
|
|
|
|
#include <EventArgs.h>
|
|
|
|
#include <Disassembler.h>
|
|
|
|
#include <Z80.h>
|
|
|
|
|
2017-06-05 21:39:15 +00:00
|
|
|
#include "Configuration.h"
|
|
|
|
|
2017-09-07 00:04:09 +00:00
|
|
|
class Board : public EightBit::Bus {
|
2017-06-05 21:39:15 +00:00
|
|
|
public:
|
|
|
|
Board(const Configuration& configuration);
|
|
|
|
|
2017-07-05 16:40:16 +00:00
|
|
|
EightBit::Z80& CPU() { return m_cpu; }
|
2017-06-05 21:39:15 +00:00
|
|
|
|
|
|
|
void initialise();
|
|
|
|
|
2017-09-07 00:04:09 +00:00
|
|
|
protected:
|
2018-06-24 19:58:20 +00:00
|
|
|
virtual uint8_t& reference(uint16_t address) final {
|
2018-06-09 23:40:56 +00:00
|
|
|
return m_ram.reference(address);
|
|
|
|
}
|
|
|
|
|
2017-06-05 21:39:15 +00:00
|
|
|
private:
|
|
|
|
const Configuration& m_configuration;
|
2017-11-18 14:29:30 +00:00
|
|
|
EightBit::Ram m_ram = 0x10000;
|
2017-06-05 21:39:15 +00:00
|
|
|
EightBit::InputOutput m_ports;
|
|
|
|
EightBit::Z80 m_cpu;
|
|
|
|
EightBit::Disassembler m_disassembler;
|
2017-06-19 17:08:13 +00:00
|
|
|
EightBit::Profiler m_profiler;
|
2017-06-05 21:39:15 +00:00
|
|
|
|
2018-06-24 21:33:02 +00:00
|
|
|
void Cpu_ExecutingInstruction_Cpm(EightBit::Z80& cpu);
|
2017-06-05 21:39:15 +00:00
|
|
|
|
2018-06-24 19:58:20 +00:00
|
|
|
void Cpu_ExecutingInstruction_Debug(EightBit::Z80& cpu);
|
2018-06-24 21:33:02 +00:00
|
|
|
void Cpu_ExecutingInstruction_Profile(EightBit::Z80& cpu);
|
2017-06-05 21:39:15 +00:00
|
|
|
|
2018-06-24 19:58:20 +00:00
|
|
|
void bdos();
|
2017-06-05 21:39:15 +00:00
|
|
|
};
|