fix(bus): remove dead code
This commit is contained in:
parent
79be38a1e6
commit
16c2dd81fc
|
@ -43,6 +43,7 @@ impl<T> SampleProducer<T> {
|
||||||
self.inner.push(value)
|
self.inner.push(value)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
pub(crate) fn available(&self) -> bool {
|
pub(crate) fn available(&self) -> bool {
|
||||||
self.inner.slots() > 2
|
self.inner.slots() > 2
|
||||||
}
|
}
|
||||||
|
|
11
src/bus.rs
11
src/bus.rs
|
@ -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 {
|
impl Bus {
|
||||||
fn interrupt_flag(&self) -> InterruptFlag {
|
fn interrupt_flag(&self) -> InterruptFlag {
|
||||||
// Read the current interrupt information from the PPU
|
// Read the current interrupt information from the PPU
|
||||||
|
|
Loading…
Reference in New Issue