2020-08-13 15:14:46 +08:00
|
|
|
from insn_rv32i_u_type import *
|
2020-08-11 17:30:47 +08:00
|
|
|
|
|
|
|
"""
|
|
|
|
LUI instruction
|
|
|
|
"""
|
|
|
|
|
|
|
|
class InsnLui(InsnRV32IUType):
|
2020-08-12 14:22:10 +08:00
|
|
|
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, 0b0110111)
|
2020-08-11 17:30:47 +08:00
|
|
|
def elaborate(self, platform):
|
|
|
|
m = super().elaborate(platform)
|
|
|
|
|
|
|
|
m.d.comb += self.spec_rd_wdata.eq(Mux(self.spec_rd_addr, self.insn_imm, 0))
|
|
|
|
|
|
|
|
return m
|