aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/firrtl/passes/memlib/MemLibOptions.scala
blob: 1db132f7a7f6014976236da63e1b33ab97af930a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// See LICENSE for license details.

package firrtl.passes.memlib

import firrtl.options.{RegisteredLibrary, ShellOption}

class MemLibOptions extends RegisteredLibrary {
  val name: String = "MemLib Options"

  val options: Seq[ShellOption[_]] = Seq(new InferReadWrite, new ReplSeqMem)
    .flatMap(_.options)

}