summaryrefslogtreecommitdiff
path: root/src/instructions.rs
diff options
context:
space:
mode:
authortaitep <taitep@taitep.se>2026-01-12 17:25:02 +0100
committertaitep <taitep@taitep.se>2026-01-12 17:25:02 +0100
commitd3e8af85a601cc5b831f02beff4ac415c21f1e8d (patch)
treeb1752f6fb4cf1817e7d045535482c51c53cf4dc7 /src/instructions.rs
parent3451a8227cee4a087f3836f63bd95650e3571ce9 (diff)
Add the files and decode logic for RVA
Diffstat (limited to 'src/instructions.rs')
-rw-r--r--src/instructions.rs2
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),
}
}