Add the files and decode logic for RVA

This commit is contained in:
2026-01-12 17:25:02 +01:00
parent 3451a8227c
commit d3e8af85a6
3 changed files with 23 additions and 2 deletions

View File

@@ -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),
}
}