17 lines
389 B
Python
17 lines
389 B
Python
from .insn_rv32i_r_type import *
|
|
|
|
"""
|
|
OR instruction
|
|
"""
|
|
|
|
class InsnOr(InsnRV32IRType):
|
|
def __init__(self, params):
|
|
super().__init__(params, 0b0000000, 0b110, 0b0110011)
|
|
|
|
def elaborate(self, platform):
|
|
m = super().elaborate(platform)
|
|
|
|
m.d.comb += self.spec_rd_wdata.eq(Mux(self.spec_rd_addr, self.rvfi_rs1_rdata | self.rvfi_rs2_rdata, 0))
|
|
|
|
return m
|