summaryrefslogtreecommitdiff
path: root/chiselFrontend/src/main/scala/chisel3/NotStrict.scala
blob: bb390e7c21bce77446385a482e1e5e542a244db2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// See LICENSE for license details.

package chisel3

import chisel3.internal.ExplicitCompileOptions


object NotStrict {
  implicit object CompileOptions extends ExplicitCompileOptions {
    val connectFieldsMustMatch = false
    val declaredTypeMustBeUnbound = false
    val requireIOWrap = false
    val dontTryConnectionsSwapped = false
    val dontAssumeDirectionality = false
  }
}