mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2026-04-19 02:22:56 +00:00
Don't expose the bus via the CPU any more: if a component needs the bus, it should be prepared to hold a reference to it.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
@@ -6,7 +6,8 @@
|
||||
|
||||
Board::Board(const Configuration& configuration)
|
||||
: m_configuration(configuration),
|
||||
m_cpu(EightBit::Intel8080(*this, m_ports)) {
|
||||
m_cpu(EightBit::Intel8080(*this, m_ports)),
|
||||
m_disassembler(*this) {
|
||||
}
|
||||
|
||||
void Board::initialise() {
|
||||
|
||||
Reference in New Issue
Block a user