Restart GB Emulator

This commit is contained in:
Rekai Musuka
2020-08-04 17:58:48 -05:00
parent 9032716346
commit 8b475cb4cf
4 changed files with 82 additions and 729 deletions

14
src/bus.rs Normal file
View File

@@ -0,0 +1,14 @@
#[derive(Debug, Copy, Clone)]
pub struct MemoryBus {
}
impl MemoryBus {
pub fn read_byte(&self, _address: u16) {
unimplemented!()
}
pub fn write_byte(&self, _address: u16) {
unimplemented!()
}
}