MCPcopy Create free account
hub / github.com/LPC4/Full-Stack / write_doubleword

Method write_doubleword

crates/virtual-machine/src/bus.rs:341–348  ·  view source on GitHub ↗
(&mut self, addr: u64, data: u64)

Source from the content-addressed store, hash-verified

339 .flush_and_invalidate();
340 }
341
342 /// Get full snapshots for all three cache levels (params + line states + stats).
343 pub fn get_cache_snapshots(
344 &self,
345 ) -> (
346 crate::memory::cache::CacheSnapshot,
347 crate::memory::cache::CacheSnapshot,
348 crate::memory::cache::CacheSnapshot,
349 ) {
350 let l1 = self.l1_cache.snapshot();
351 let l2 = self.l1_cache.peek_next().snapshot();

Callers 1

from_elfMethod · 0.45

Calls 1

routeMethod · 0.80

Tested by

no test coverage detected