feat(egui): add timer window

This commit is contained in:
2021-06-02 02:44:32 -05:00
parent b1bf6c5868
commit 86f3a897f1
2 changed files with 28 additions and 0 deletions

View File

@@ -72,6 +72,10 @@ impl Bus {
self.timer.step(cycles);
self.sound.step(cycles);
}
pub fn timer(&self) -> Timer {
self.timer
}
}
impl Bus {