From 6c39a5eef270e160f9954dc8eac99ce53e8423c9 Mon Sep 17 00:00:00 2001 From: taitep Date: Sun, 21 Dec 2025 19:36:25 +0100 Subject: Implement JALR, fix JAL, change how some stuff in instructions.rs is expressed --- src/instructions/rvi.rs | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'src/instructions') diff --git a/src/instructions/rvi.rs b/src/instructions/rvi.rs index 5c06b62..239ae98 100644 --- a/src/instructions/rvi.rs +++ b/src/instructions/rvi.rs @@ -117,15 +117,21 @@ pub fn lui(core: &mut Core, instr: Instruction) -> InstructionResult { InstructionResult::Normal } +pub fn auipc(core: &mut Core, instr: Instruction) -> InstructionResult { + core.reg_write(instr.rd(), core.pc.wrapping_add(instr.imm_u())); + core.advance_pc(); + InstructionResult::Normal +} + pub fn jal(core: &mut Core, instr: Instruction) -> InstructionResult { - core.reg_write(instr.rd(), core.pc); + core.reg_write(instr.rd(), core.pc.wrapping_add(4)); core.pc = core.pc.wrapping_add(instr.imm_j()); InstructionResult::Normal } -pub fn auipc(core: &mut Core, instr: Instruction) -> InstructionResult { - core.reg_write(instr.rd(), core.pc.wrapping_add(instr.imm_u())); - core.advance_pc(); +pub fn jalr(core: &mut Core, instr: Instruction) -> InstructionResult { + core.reg_write(instr.rd(), core.pc.wrapping_add(4)); + core.pc = core.reg_read(instr.rs1()).wrapping_add(instr.imm_i()); InstructionResult::Normal } -- cgit v1.2.3