Add (generic) RV32I I-Type Instruction
This commit is contained in:
parent
ff977c0e50
commit
e97a86bfbe
|
@ -0,0 +1,13 @@
|
||||||
|
from Insn import *
|
||||||
|
|
||||||
|
"""
|
||||||
|
RV32I I-Type Instruction
|
||||||
|
"""
|
||||||
|
|
||||||
|
class InsnRV32IIType(Insn):
|
||||||
|
def elaborate(self, platform):
|
||||||
|
m = super().elaborate(platform)
|
||||||
|
|
||||||
|
m.d.comb += self.insn_imm.eq(Value.as_signed(self.rvfi_insn[20:32]))
|
||||||
|
|
||||||
|
return m
|
Loading…
Reference in New Issue