Skip to content

Commit

Permalink
o1vm/riscv32: implement M type instruction divu
Browse files Browse the repository at this point in the history
  • Loading branch information
dannywillems committed Nov 20, 2024
1 parent d7e039d commit b44fedc
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion o1vm/src/interpreters/riscv32im/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2193,7 +2193,17 @@ pub fn interpret_mtype<Env: InterpreterEnv>(env: &mut Env, instr: MInstruction)
env.set_next_instruction_pointer(next_instruction_pointer + Env::constant(4u32));
}
MInstruction::Divu => {
unimplemented!("Divu")
let rs1 = env.read_register(&rs1);
let rs2 = env.read_register(&rs2);
// FIXME: constrain
let res = {
let pos = env.alloc_scratch();
unsafe { env.div(&rs1, &rs2, pos) }
};
env.write_register(&rd, res);

env.set_instruction_pointer(next_instruction_pointer.clone());
env.set_next_instruction_pointer(next_instruction_pointer + Env::constant(4u32));
}
MInstruction::Rem => {
let rs1 = env.read_register(&rs1);
Expand Down

0 comments on commit b44fedc

Please sign in to comment.