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 a1c049a commit b425565Copy full SHA for b425565
src/main.rs
@@ -89,6 +89,9 @@ fn main() {
89
90
let filename = matches.value_of("filename").expect("please enter the filename.");
91
cfg.verbose = matches.occurrences_of("verbose") as u32;
92
+ if cfg.verbose == 0 {
93
+ println!("use -vv to see the assembly code emulated, and -v to see the messages");
94
+ }
95
cfg.trace_mem = matches.is_present("memory");
96
cfg.trace_regs = matches.is_present("registers");
97
if matches.is_present("register") {
0 commit comments