implemented run function to use one-instruction for several instruction
This commit is contained in:
parent
adf7f0a02e
commit
233d928b6f
@ -37,6 +37,13 @@ impl Machine {
|
||||
}
|
||||
}
|
||||
|
||||
pub fn run(machine : Machine){
|
||||
let mut m = machine;
|
||||
loop{
|
||||
Machine::one_instruction(&mut m);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn one_instruction(machine :&mut Machine) {
|
||||
|
||||
let mut unsigned_reg1 : u64 = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user