fix: cleanup structs into correct files
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
use clap::{Parser, Subcommand};
|
||||
|
||||
mod aout;
|
||||
mod decode;
|
||||
mod disasm;
|
||||
mod instructions;
|
||||
|
||||
@@ -34,7 +33,8 @@ fn main() {
|
||||
|
||||
match args.command {
|
||||
Command::Disasm => {
|
||||
let _instructions = disasm::disasm(&args).unwrap();
|
||||
let instructions = disasm::disasm(&args).unwrap();
|
||||
log::debug!("{:?}", &instructions);
|
||||
}
|
||||
_ => panic!("Command not yet implemented"),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user