riscv-formal-nmigen/rvfi/insns/insn_xor.py

16 lines
496 B
Python
Raw Normal View History

2020-08-17 11:50:53 +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):
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