fix(bus): remove dead code

This commit is contained in:
Rekai Nyangadzayi Musuka 2021-08-14 15:02:25 -05:00
parent 79be38a1e6
commit 16c2dd81fc
2 changed files with 1 additions and 11 deletions

View File

@ -43,6 +43,7 @@ impl<T> SampleProducer<T> {
self.inner.push(value)
}
#[allow(dead_code)]
pub(crate) fn available(&self) -> bool {
self.inner.slots() > 2
}

View File

@ -374,17 +374,6 @@ impl BusIo for Bus {
}
}
impl Bus {
pub(crate) fn read_word(&self, addr: u16) -> u16 {
(self.read_byte(addr + 1) as u16) << 8 | self.read_byte(addr) as u16
}
pub(crate) fn write_word(&mut self, addr: u16, word: u16) {
self.write_byte(addr + 1, (word >> 8) as u8);
self.write_byte(addr, (word & 0x00FF) as u8);
}
}
impl Bus {
fn interrupt_flag(&self) -> InterruptFlag {
// Read the current interrupt information from the PPU