update memory

This commit is contained in:
Baptiste 2023-03-03 12:21:37 +01:00
parent e61a92b490
commit 6072ba97d6
2 changed files with 5 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

@ -75,8 +75,8 @@ impl Section{
fn print_Section(s: &Section){ fn print_Section(s: &Section){
println!("ADDR :: {}", s.addr); println!("ADDR :: {:x}", s.addr);
println!("LEN :: {}", s.len); println!("LEN :: {:x}", s.len);
println!("CONTENT :: {:?}", s.content); println!("CONTENT :: {:?}", s.content);
} }
} }