We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cfd240 commit ba1f7f6Copy full SHA for ba1f7f6
rtl/tc_l2/src/main/scala/core/id/ISADecoder.scala
@@ -88,6 +88,7 @@ class ISADecoder extends Module {
88
io.isa.REMU := (io.inst === BitPat("b0000001_?????_?????_111_?????_0110011"))
89
io.isa.REMUW := (io.inst === BitPat("b0000001_?????_?????_111_?????_0111011"))
90
io.isa.REMW := (io.inst === BitPat("b0000001_?????_?????_110_?????_0111011"))
91
+ io.isa.GCD := (io.inst === BitPat("b0000000_?????_?????_000_?????_0001000"))
92
93
protected val arith = io.isa.ADD || io.isa.ADDW || io.isa.ADDI || io.isa.ADDIW || io.isa.SUB || io.isa.SUBW || io.isa.LUI || io.isa.AUIPC
94
protected val logc = io.isa.XOR || io.isa.XORI || io.isa.OR || io.isa.ORI || io.isa.AND || io.isa.ANDI
0 commit comments