gb/src/bus.rs

21 lines
397 B
Rust
Raw Normal View History

#[derive(Debug, Copy, Clone)]
2020-09-04 05:41:19 +00:00
pub struct Bus {}
impl Bus {
2020-09-04 05:41:19 +00:00
pub fn read_byte(&self, addr: u16) -> u8 {
unimplemented!()
}
2020-09-04 05:41:19 +00:00
pub fn write_byte(&mut self, addr: u16, byte: u8) {
unimplemented!()
}
2020-09-04 05:41:19 +00:00
pub fn read_word(&self, addr: u16) -> u16 {
unimplemented!()
}
2020-09-04 05:41:19 +00:00
pub fn write_word(&mut self, addr: u16, word: u16) {
unimplemented!()
}
2020-09-04 05:41:19 +00:00
}