blob: f0c9ebf49c7d7ecbabbee8e925ad3c5483e8e71f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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)
}
|