aboutsummaryrefslogtreecommitdiff
path: root/src/interrupts_timers.rs
diff options
context:
space:
mode:
authorAstatin <[email protected]>2025-05-22 00:07:30 +0200
committerAstatin <[email protected]>2025-05-22 00:07:30 +0200
commit4fce95c86e12f91e127605d440118e1b6a64208b (patch)
tree729ff48e04be1c6fef42a45afb17c0d0a2259ec1 /src/interrupts_timers.rs
parent9a8e4117be8d30109229600346e7d9561c52a3e3 (diff)
Save wram,vram,io,hram with X button + move big arrays to Heap
Diffstat (limited to 'src/interrupts_timers.rs')
-rw-r--r--src/interrupts_timers.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interrupts_timers.rs b/src/interrupts_timers.rs
index f4ac3c2..b776777 100644
--- a/src/interrupts_timers.rs
+++ b/src/interrupts_timers.rs
@@ -1,6 +1,6 @@
use crate::display::DisplayInterrupt;
+use crate::io::{Audio, Serial};
use crate::state::{GBState, MemError};
-use crate::io::{Serial, Audio};
const TIMA_TIMER_SPEEDS: [u64; 4] = [1024, 16, 64, 256];