From d3e8af85a601cc5b831f02beff4ac415c21f1e8d Mon Sep 17 00:00:00 2001 From: taitep Date: Mon, 12 Jan 2026 17:25:02 +0100 Subject: Add the files and decode logic for RVA --- src/instructions.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/instructions.rs') 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), } } -- cgit v1.2.3