We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 984f230 commit 4662634Copy full SHA for 4662634
humility-core/src/core.rs
@@ -626,7 +626,7 @@ impl Core for OpenOCDCore {
626
}
627
628
fn read_word_32(&mut self, addr: u32) -> Result<u32> {
629
- let result = self.sendcmd(&format!("mrw 0x{:x}", addr))?;
+ let result = self.sendcmd(&format!("read_memory 0x{:x} 32 1", addr))?;
630
Ok(parse_int::parse::<u32>(&result)?)
631
632
0 commit comments