Number of full-screen FILL clears the framebuffer has performed.
(&self)
| 251 | crate::memory::cache::CacheStats, |
| 252 | )> { |
| 253 | (self.memory_latency.enabled && addr >= RAM_BASE).then(|| self.get_cache_stats()) |
| 254 | } |
| 255 | |
| 256 | /// Capture the architectural RAM image (RAM overlaid with dirty cache lines). |
| 257 | pub fn ram_image(&self) -> Vec<u8> { |
| 258 | let mut buf = vec![0u8; self.l1_cache.ram_len()]; |
no test coverage detected