Remove redundant prameter in InsnSltui instruction
This commit is contained in:
parent
c60203ce81
commit
fda097c52e
@ -5,8 +5,8 @@ SLTIU instruction
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
class InsnSltiu(InsnRV32IITypeArith):
|
class InsnSltiu(InsnRV32IITypeArith):
|
||||||
def __init__(self, RISCV_FORMAL_ILEN, RISCV_FORMAL_XLEN, RISCV_FORMAL_CSR_MISA, RISCV_FORMAL_COMPRESSED):
|
def __init__(self, RISCV_FORMAL_ILEN, RISCV_FORMAL_XLEN, RISCV_FORMAL_CSR_MISA):
|
||||||
super().__init__(RISCV_FORMAL_ILEN, RISCV_FORMAL_XLEN, RISCV_FORMAL_CSR_MISA, RISCV_FORMAL_COMPRESSED, 0b011)
|
super().__init__(RISCV_FORMAL_ILEN, RISCV_FORMAL_XLEN, RISCV_FORMAL_CSR_MISA, 0b011)
|
||||||
def elaborate(self, platform):
|
def elaborate(self, platform):
|
||||||
m = super().elaborate(platform)
|
m = super().elaborate(platform)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user