rmg-001/src/timer.rs

12 lines
232 B
Rust
Raw Normal View History

2021-10-29 23:27:21 +00:00
const DIVIDER_REGISTER_ADDRESS: u16 = 0xFF04;
const TIMER_COUNTER_ADDRESS: u16 = 0xFF05;
const TIMER_MODULO_ADDRESS: u16 = 0xFF05;
const TIMER_CONTROL_ADDRESS: u16 = 0xFF05;
struct Timer;
impl Timer {
pub fn cycle() {
}
}