diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 7866a7a..4e97cd4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,8 +2,10 @@ mod interpreter; mod glk; mod instructions; -use interpreter::Interpreter; +mod opcodes; +use opcodes::OpCodes; +use interpreter::Interpreter; use std::{env, fs, process::exit}; const MAJOR_VERSION : u16 = 3; |