mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-18 11:06:15 +00:00
Whoops: missed this from the last commit!
This commit is contained in:
parent
47ac36c8af
commit
30b61af820
@ -9,7 +9,7 @@ class Board final : public EightBit::Bus {
|
|||||||
public:
|
public:
|
||||||
Board();
|
Board();
|
||||||
|
|
||||||
EightBit::mc6809& CPU() { return m_cpu; }
|
constexpr EightBit::mc6809& CPU() noexcept { return m_cpu; }
|
||||||
|
|
||||||
void raisePOWER() final;
|
void raisePOWER() final;
|
||||||
void lowerPOWER() final;
|
void lowerPOWER() final;
|
||||||
@ -21,8 +21,8 @@ protected:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
EightBit::Ram m_ram = 0x10000; // 0000 - FFFF, 64K RAM
|
EightBit::Ram m_ram = 0x10000; // 0000 - FFFF, 64K RAM
|
||||||
EightBit::mc6809 m_cpu;
|
EightBit::mc6809 m_cpu = { *this };
|
||||||
EightBit::Disassembly m_disassembler;
|
EightBit::Disassembly m_disassembler = { *this, m_cpu };
|
||||||
|
|
||||||
// The m_disassembleAt and m_ignoreDisassembly are used to skip pin events
|
// The m_disassembleAt and m_ignoreDisassembly are used to skip pin events
|
||||||
EightBit::register16_t m_disassembleAt = 0x0000;
|
EightBit::register16_t m_disassembleAt = 0x0000;
|
||||||
|
Loading…
Reference in New Issue
Block a user