decode & struct Instruction

This commit is contained in:
Baptiste
2022-10-19 16:39:38 +02:00
parent 0be10b9f82
commit 9748b0f2dc
3 changed files with 67 additions and 0 deletions

View File

@ -1,3 +1,6 @@
mod decode;
fn main() {
let instr = decode::decode(98);
println!("Hello, world!");
}