()
| 169 | associativity: 2, |
| 170 | write_back: false, |
| 171 | read_only: false, |
| 172 | }, |
| 173 | ram, |
| 174 | ); |
| 175 | c.write_byte(RAM_BASE, 0xCD) |
| 176 | .expect("cache access should succeed"); |
| 177 | // Bypass the cache by reading directly from the underlying RAM via peek_next |
| 178 | let direct = c.peek_next().peek_byte(RAM_BASE).unwrap_or(0); |
nothing calls this directly
no test coverage detected