| 6 | use crate::memory::{MemoryAccess, PeekByteRaw, RamImage}; |
| 7 | |
| 8 | pub struct CacheParams { |
| 9 | pub size: usize, |
| 10 | pub block_size: usize, |
| 11 | pub associativity: usize, |
| 12 | pub write_back: bool, |
| 13 | pub read_only: bool, |
| 14 | } |
| 15 | |
| 16 | struct CacheLine { |
| 17 | valid: bool, |
nothing calls this directly
no outgoing calls
no test coverage detected