diff options
author | Astatin <[email protected]> | 2025-05-22 00:07:30 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-05-22 00:07:30 +0200 |
commit | 4fce95c86e12f91e127605d440118e1b6a64208b (patch) | |
tree | 729ff48e04be1c6fef42a45afb17c0d0a2259ec1 /src/mmio.rs | |
parent | 9a8e4117be8d30109229600346e7d9561c52a3e3 (diff) |
Save wram,vram,io,hram with X button + move big arrays to Heap
Diffstat (limited to 'src/mmio.rs')
-rw-r--r-- | src/mmio.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mmio.rs b/src/mmio.rs index e669ff8..aa2f61d 100644 --- a/src/mmio.rs +++ b/src/mmio.rs @@ -1,5 +1,5 @@ +use crate::io::{Audio, Serial}; use crate::state::{MemError, Memory}; -use crate::io::{Serial, Audio}; impl<S: Serial, A: Audio> Memory<S, A> { pub fn r_io(&self, addr: u8) -> u8 { |