blob: 4076d5d6003f3d9f7bd5e2887757e910181944d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// See LICENSE for license details.
package firrtl.passes.memlib
import firrtl._
import firrtl.options.{RegisteredLibrary, ShellOption}
import scopt.OptionParser
class MemLibOptions extends RegisteredLibrary {
val name: String = "MemLib Options"
val options: Seq[ShellOption[_]] = Seq( new InferReadWrite,
new ReplSeqMem )
.flatMap(_.options)
}
|