2020-08-13 15:14:46 +08:00
|
|
|
from insn_rv32i_r_type import *
|
2020-08-07 15:35:40 +08:00
|
|
|
|
2020-08-07 16:06:15 +08:00
|
|
|
"""
|
|
|
|
XOR instruction
|
|
|
|
"""
|
|
|
|
|
2020-08-07 15:35:40 +08:00
|
|
|
class InsnXor(InsnRV32IRType):
|
2020-08-12 13:27:29 +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, 0b0000000, 0b100, 0b0110011)
|
2020-08-07 15:35:40 +08:00
|
|
|
def elaborate(self, platform):
|
2020-08-10 11:15:05 +08:00
|
|
|
m = super().elaborate(platform)
|
2020-08-07 15:35:40 +08:00
|
|
|
|
|
|
|
m.d.comb += self.spec_rd_wdata.eq(Mux(self.spec_rd_addr, self.rvfi_rs1_rdata ^ self.rvfi_rs2_rdata, 0))
|
|
|
|
|
|
|
|
return m
|