2020-08-04 17:58:48 -05:00
|
|
|
#[derive(Debug, Copy, Clone)]
|
2020-08-05 03:23:50 -05:00
|
|
|
pub struct MemoryBus {}
|
2020-08-04 17:58:48 -05:00
|
|
|
|
|
|
|
impl MemoryBus {
|
2020-08-05 03:23:50 -05:00
|
|
|
pub fn read_byte(&self, _address: u16) -> u8 {
|
2020-08-04 17:58:48 -05:00
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn write_byte(&self, _address: u16) {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
2020-08-05 03:23:50 -05:00
|
|
|
}
|