mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-03-06 21:29:50 +00:00
Remove some unused memory event handlers.
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
This commit is contained in:
parent
26e99f6934
commit
9190b29b4b
@ -330,10 +330,8 @@ namespace EightBit {
|
||||
triggerInterrupt(Interrupts::KeypadPressed);
|
||||
}
|
||||
|
||||
void Bus_WritingByte(uint16_t address);
|
||||
void Bus_WrittenByte(uint16_t address);
|
||||
void Bus_ReadingByte(uint16_t address);
|
||||
void Bus_ReadByte(uint16_t address);
|
||||
};
|
||||
}
|
||||
}
|
@ -33,8 +33,6 @@ EightBit::GameBoy::Bus::Bus()
|
||||
m_startPressed(false)
|
||||
{
|
||||
ReadingByte.connect(std::bind(&GameBoy::Bus::Bus_ReadingByte, this, std::placeholders::_1));
|
||||
ReadByte.connect(std::bind(&GameBoy::Bus::Bus_ReadByte, this, std::placeholders::_1));
|
||||
WritingByte.connect(std::bind(&GameBoy::Bus::Bus_WritingByte, this, std::placeholders::_1));
|
||||
WrittenByte.connect(std::bind(&GameBoy::Bus::Bus_WrittenByte, this, std::placeholders::_1));
|
||||
m_divCounter.word = 0xabcc;
|
||||
m_dmaAddress.word = 0;
|
||||
@ -184,12 +182,6 @@ void EightBit::GameBoy::Bus::Bus_ReadingByte(const uint16_t address) {
|
||||
}
|
||||
}
|
||||
|
||||
void EightBit::GameBoy::Bus::Bus_ReadByte(const uint16_t address) {
|
||||
}
|
||||
|
||||
void EightBit::GameBoy::Bus::Bus_WritingByte(const uint16_t address) {
|
||||
}
|
||||
|
||||
void EightBit::GameBoy::Bus::Bus_WrittenByte(const uint16_t address) {
|
||||
|
||||
const auto value = DATA();
|
||||
|
Loading…
x
Reference in New Issue
Block a user