mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-19 17:30:56 +00:00
8b12ed23e8
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
31 lines
701 B
C++
31 lines
701 B
C++
#pragma once
|
|
|
|
#include <Ram.h>
|
|
#include <Bus.h>
|
|
#include <mc6809.h>
|
|
#include <Disassembly.h>
|
|
|
|
class Board : public EightBit::Bus {
|
|
public:
|
|
Board();
|
|
|
|
EightBit::mc6809& CPU() { return m_cpu; }
|
|
|
|
void initialise();
|
|
|
|
protected:
|
|
virtual EightBit::MemoryMapping mapping(uint16_t address) final;
|
|
|
|
private:
|
|
EightBit::Ram m_ram = 0x10000; // 0000 - FFFF, 64K RAM
|
|
EightBit::mc6809 m_cpu;
|
|
EightBit::Disassembly m_disassembler;
|
|
|
|
// The m_disassembleAt and m_ignoreDisassembly are used to skip pin events
|
|
EightBit::register16_t m_disassembleAt = 0x0000;
|
|
bool m_ignoreDisassembly = false;
|
|
|
|
void Cpu_ExecutingInstruction_Debug(EightBit::mc6809&);
|
|
void Cpu_ExecutedInstruction_Debug(EightBit::mc6809&);
|
|
};
|