Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sha0coder committed Dec 7, 2021
1 parent a1c049a commit b425565
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ fn main() {

let filename = matches.value_of("filename").expect("please enter the filename.");
cfg.verbose = matches.occurrences_of("verbose") as u32;
if cfg.verbose == 0 {
println!("use -vv to see the assembly code emulated, and -v to see the messages");
}
cfg.trace_mem = matches.is_present("memory");
cfg.trace_regs = matches.is_present("registers");
if matches.is_present("register") {
Expand Down

0 comments on commit b425565

Please sign in to comment.