diff options
Diffstat (limited to 'src/instructions.rs')
| -rw-r--r-- | src/instructions.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/instructions.rs b/src/instructions.rs index d820f35..476ae6d 100644 --- a/src/instructions.rs +++ b/src/instructions.rs @@ -7,6 +7,7 @@ #[macro_use] mod macros; +mod rva; mod rvi; mod rvm; @@ -166,6 +167,7 @@ pub(crate) fn find_and_exec(instr: Instruction, core: &mut Core) -> Result<(), E Ok(()) } }, + 0b01011 => rva::find_and_exec(instr, core), _ => illegal(instr), } } |
