fix: cleanup structs into correct files

This commit is contained in:
2025-05-08 10:05:09 +09:00
parent 849895a437
commit 1c7d3f3adc
5 changed files with 229 additions and 229 deletions

View File

@@ -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"),
}