Implement LH

This commit is contained in:
2025-12-22 21:15:24 +01:00
parent 5cbaf2dc66
commit be1b1b9fe6
2 changed files with 22 additions and 1 deletions

View File

@@ -44,6 +44,7 @@ pub(crate) fn find_and_exec(instr: Instruction, core: &mut Core) -> Option<Instr
// LOAD
0b000 => Some(rvi::lb(core, instr)),
0b100 => Some(rvi::lbu(core, instr)),
0b001 => Some(rvi::lh(core, instr)),
0b011 => Some(rvi::ld(core, instr)),
_ => None,
},