mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2026-03-13 18:16:29 +00:00
Make the 6502 a little more compatible with other processor implementations.
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
This commit is contained in:
@@ -14,6 +14,9 @@ EightBit::Memory::Memory(uint16_t addressMask)
|
||||
m_data = &(m_bus[m_address.word]);
|
||||
}
|
||||
|
||||
EightBit::Memory::~Memory() {
|
||||
}
|
||||
|
||||
uint8_t EightBit::Memory::peek(uint16_t address) const {
|
||||
return m_bus[address];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user