Skip to content

Commit

Permalink
[doc] filter out vset csr insn
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas-Wye committed Jun 24, 2024
1 parent bd0a0c4 commit bc191b1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion t1/src/T1.scala
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,12 @@ case class T1Parameter(
org.chipsalliance.rvdecoderdb.instructions(org.chipsalliance.rvdecoderdb.extractResource(getClass.getClassLoader))
.filter(instruction => instruction.instructionSet.name == "rv_v")++
t1customInstructions.map(_.instruction)
}.toSeq.sortBy(_.instructionSet.name)
}.toSeq.sortBy(_.instructionSet.name).filter{
insn => insn.name match {
case s if Seq("vsetivli", "vsetvli", "vsetvl").contains(s) => false
case _ => true
}
}

require(extensions.forall(Seq("Zve32x", "Zve32f").contains), "unsupported extension.")
// TODO: require bank not overlap
Expand Down

0 comments on commit bc191b1

Please sign in to comment.