Restructure insns directory contents #2
|
@ -0,0 +1,26 @@
|
||||||
|
from Insn import *
|
||||||
|
|
||||||
|
"""
|
||||||
|
RV32I U-Type Instruction
|
||||||
|
"""
|
||||||
|
|
||||||
|
class InsnRV32IUType(Insn):
|
||||||
|
def __init__(self, RISCV_FORMAL_ILEN, RISCV_FORMAL_XLEN, RISCV_FORMAL_CSR_MISA, RISCV_FORMAL_COMPRESSED, opcode):
|
||||||
|
super().__init__(RISCV_FORMAL_ILEN, RISCV_FORMAL_XLEN, RISCV_FORMAL_CSR_MISA, RISCV_FORMAL_COMPRESSED)
|
||||||
|
self.opcode = opcode
|
||||||
|
def elaborate(self, platform):
|
||||||
|
m = super().elaborate(platform)
|
||||||
|
|
||||||
|
m.d.comb += self.insn_imm.eq(Value.as_signed(self.rvfi_insn[12:32] << 12))
|
||||||
|
|
||||||
|
if self.RISCV_FORMAL_CSR_MISA:
|
||||||
|
m.d.comb += self.misa_ok.eq((self.rvfi_csr_misa_rdata & 0) == 0)
|
||||||
|
m.d.comb += self.spec_csr_misa_rmask.eq(0)
|
||||||
|
else:
|
||||||
|
m.d.comb += self.misa_ok.eq(1)
|
||||||
|
|
||||||
|
m.d.comb += self.spec_valid.eq(self.rvfi_valid & (~self.insn_padding) & (self.insn_opcode == self.opcode))
|
||||||
|
m.d.comb += self.spec_rd_addr.eq(self.insn_rd)
|
||||||
|
m.d.comb += self.spec_pc_wdata.eq(self.rvfi_pc_rdata + 4)
|
||||||
|
|
||||||
|
return m
|
Loading…
Reference in New Issue