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

Method read_doubleword

crates/virtual-machine/src/memory/cache.rs:337–339  ·  view source on GitHub ↗
(&mut self, addr: u64)

Source from the content-addressed store, hash-verified

335 }
336
337 fn write_halfword(&mut self, addr: u64, data: u16) -> Result<(), VmError> {
338 self.write_n(addr, data as u64, 2)
339 }
340
341 fn write_word(&mut self, addr: u64, data: u32) -> Result<(), VmError> {
342 self.write_n(addr, data as u64, 4)

Callers

nothing calls this directly

Calls 1

read_nMethod · 0.80

Tested by

no test coverage detected