Update operations

This commit is contained in:
Werner
2021-12-10 13:49:16 -03:00
parent 79cfa207c4
commit 4cd8620325
10 changed files with 261 additions and 433 deletions

BIN
Examples/Bytecode.bin Normal file

Binary file not shown.

Binary file not shown.

View File

@ -5,7 +5,7 @@ use std::fs;
fn main() {
let mut vm = Machine::New([0, 0, 0, 0]);
let code = fs::read("Examples/Simple.bin").unwrap();
let code = fs::read("Examples/Bytecode.bin").unwrap();
vm.LoadProgram(&code);
vm.Execute();
}