mirror of
https://github.com/Noratrieb/rustv32i.git
synced 2026-03-14 23:46:03 +01:00
parent
8e17992010
commit
f2ddd7ab1c
3 changed files with 12 additions and 9 deletions
10
src/emu.rs
10
src/emu.rs
|
|
@ -569,11 +569,11 @@ impl<XLEN: XLen> Emulator<XLEN> {
|
|||
|src| ((src as u32).signed_shr(imm.as_u32())) as u64,
|
||||
);
|
||||
}
|
||||
Inst::MulW { dest, src1, src2 } => todo!(),
|
||||
Inst::DivW { dest, src1, src2 } => todo!(),
|
||||
Inst::DivuW { dest, src1, src2 } => todo!(),
|
||||
Inst::RemW { dest, src1, src2 } => todo!(),
|
||||
Inst::RemuW { dest, src1, src2 } => todo!(),
|
||||
Inst::MulW { .. } => todo!(),
|
||||
Inst::DivW { .. } => todo!(),
|
||||
Inst::DivuW { .. } => todo!(),
|
||||
Inst::RemW { .. } => todo!(),
|
||||
Inst::RemuW { .. } => todo!(),
|
||||
_ => todo!(),
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue