diff options
author | Ashelyn Rose <git@ashen.earth> | 2024-12-07 13:29:46 -0700 |
---|---|---|
committer | Ashelyn Rose <git@ashen.earth> | 2024-12-07 13:29:46 -0700 |
commit | fbbeed8c10dc9c9bdb34f946d5b844b537ebad7a (patch) | |
tree | 096b6387ed9a72c93cafb3e8052be51c78c52b11 /src/main.rs | |
parent | 3e51fca06d097698add372c1052751b3b6313be3 (diff) |
Proof of concept for macro opcode defs
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; |