virtual_machine submodule

This commit is contained in:
Andrew Morris
2022-05-02 11:33:45 +10:00
parent 212fc58cf9
commit 3593f1c710
5 changed files with 5 additions and 2 deletions

View File

@@ -1,8 +1,6 @@
mod assemble;
mod run;
mod virtual_machine;
mod vs_value;
mod bytecode_decoder;
use std::env;
use std::process::exit;

View File

@@ -0,0 +1,5 @@
mod vs_value;
mod bytecode_decoder;
mod virtual_machine;
pub use virtual_machine::VirtualMachine;