gb/src/timer.rs

66 lines
1.3 KiB
Rust
Raw Normal View History

2021-01-19 04:54:38 +00:00
use crate::instruction::Cycles;
#[derive(Debug, Clone, Copy)]
pub struct Timer {
pub control: TimerControl,
}
2021-01-19 04:54:38 +00:00
impl Timer {
pub fn step(&mut self, _cycles: Cycles) {
//
}
}
impl Default for Timer {
fn default() -> Self {
Self {
control: 0x00.into(),
}
}
}
#[derive(Debug, Clone, Copy)]
enum TimerSpeed {
2021-01-19 07:36:44 +00:00
Freq4096Hz = 0,
Freq262144Hz = 1,
Freq65536Hz = 2,
Freq16384Hz = 3,
}
impl From<u8> for TimerSpeed {
fn from(byte: u8) -> Self {
match byte {
0x00 => Self::Freq4096Hz,
0x01 => Self::Freq262144Hz,
0x10 => Self::Freq65536Hz,
0x11 => Self::Freq16384Hz,
_ => unreachable!(),
}
}
}
#[derive(Debug, Clone, Copy)]
pub struct TimerControl {
enabled: bool,
speed: TimerSpeed,
}
impl From<u8> for TimerControl {
fn from(byte: u8) -> Self {
let byte = byte & 0x07; // Clear everything but last 3 bits
Self {
enabled: (byte >> 2) == 0x01,
speed: (byte & 0x03).into(), // Clear everything but last 2 bits
}
}
}
impl From<TimerControl> for u8 {
fn from(control: TimerControl) -> Self {
2021-01-19 07:36:44 +00:00
let byte: u8 = control.speed as u8; // Get bit 1 and 0.
(byte & !(1u8 << 2)) | ((control.enabled as u8) << 2) // specifically manibulate bit 2
}
}