Added OPIW OPs and made some fix (see description)

Fix some warning which appear on clippy
Fix print with 2 OPIW operations
Fix doc in mod.rs
This commit is contained in:
Quentin Legot
2023-02-04 18:16:52 +01:00
parent 83c212199e
commit 3762547402
4 changed files with 38 additions and 11 deletions

View File

@ -9,6 +9,6 @@ fn main() {
let a : u8 = 128;
let b : i8 = a as i8;
let c : u8 = b as u8;
println!("aaa {}", c);
println!("aaa {c}");
println!("read_memory : {}", Machine::read_memory(&mut m, 2, 4));
}