aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/firrtl/passes/memlib/MemLibOptions.scala
blob: 186ca78cc5d6f559cc3396639723b39a0a21e143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: Apache-2.0

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)

}