testing more compiler options
This commit is contained in:
@@ -91,6 +91,9 @@ impl CPU {
|
||||
_ => println!("VM > INST {:03b} not implemented", inst.funct3()),
|
||||
}
|
||||
}
|
||||
inst::S_TYPE => {
|
||||
println!("VM > OPCODE S TYPE not implemented");
|
||||
}
|
||||
_ => println!("VM > OPCODE {:08b} not implemented", opcode),
|
||||
};
|
||||
|
||||
|
||||
@@ -64,7 +64,7 @@ fn main() {
|
||||
println!("VM Starting Up");
|
||||
|
||||
let mut vm = VMRV32I::new();
|
||||
vm.load_prog("./test/add.bin");
|
||||
vm.load_prog("./test/test.bin");
|
||||
vm.dump_prog();
|
||||
vm.dispatch();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user