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 82264ef commit 4504b70Copy full SHA for 4504b70
crates/libmwemu/src/emu/execution.rs
@@ -463,13 +463,14 @@ impl Emu {
463
//let mut prev_prev_addr:u64 = 0;
464
let mut repeat_counter: u32 = 0;
465
466
+ /*
467
if end_addr.is_none() && self.max_pos.is_none() {
468
log::info!(" ----- emulation -----");
469
} else if !self.max_pos.is_none() {
470
log::info!(" ----- emulation to {} -----", self.max_pos.unwrap());
471
} else {
472
log::info!(" ----- emulation to 0x{:x} -----", end_addr.unwrap());
- }
473
+ }*/
474
475
//self.pos = 0;
476
let arch = if self.cfg.is_64bits { 64 } else { 32 };
0 commit comments