Add SRAI instruction
This commit is contained in:
parent
20a500157b
commit
475c1d9fc2
|
@ -0,0 +1,15 @@
|
||||||
|
from InsnRV32IITypeShift import *
|
||||||
|
|
||||||
|
"""
|
||||||
|
SRAI instruction
|
||||||
|
"""
|
||||||
|
|
||||||
|
class InsnSrai(InsnRV32IITypeShift):
|
||||||
|
def __init__(self, RISCV_FORMAL_ILEN, RISCV_FORMAL_XLEN, RISCV_FORMAL_CSR_MISA, RISCV_FORMAL_COMPRESSED):
|
||||||
|
super().__init__(RISCV_FORMAL_ILEN, RISCV_FORMAL_XLEN, RISCV_FORMAL_CSR_MISA, RISCV_FORMAL_COMPRESSED, 0b010000, 0b101)
|
||||||
|
def elaborate(self, platform):
|
||||||
|
m = super().elaborate(platform)
|
||||||
|
|
||||||
|
m.d.comb += self.spec_rd_wdata.eq(Mux(self.spec_rd_addr, (Value.as_signed(self.rvfi_rs1_rdata) >> self.insn_shamt) | (-(Value.as_signed(self.rvfi_rs1_rdata) < 0) << (self.RISCV_FORMAL_XLEN - self.insn_shamt)), 0))
|
||||||
|
|
||||||
|
return m
|
Loading…
Reference in New Issue