Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
sequencer committed Jul 13, 2021
1 parent 731a529 commit 40bfd71
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion iocell/src/main/scala/barstools/iocell/chisel/IOCell.scala
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ object IOCell {
* @param name An optional name or name prefix to use for naming IO cells
* @return A Seq of all generated IO cell instances
*/
val toSyncReset: (Reset) => Bool = _.toBool
val toSyncReset: (Reset) => Bool = _.asBool
val toAsyncReset: (Reset) => AsyncReset = _.asAsyncReset
def generateFromSignal[T <: Data, R <: Reset](
coreSignal: T,
Expand Down
2 changes: 1 addition & 1 deletion macros/src/main/scala/barstools/macros/MacroCompiler.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package barstools.macros

import barstools.macros.Utils._
import firrtl.Utils._
import firrtl.Utils.{BoolType, one, zero}
import firrtl.annotations._
import firrtl.ir._
import firrtl.stage.{FirrtlSourceAnnotation, FirrtlStage, Forms, OutputFileAnnotation, RunFirrtlTransformAnnotation}
Expand Down
2 changes: 1 addition & 1 deletion macros/src/main/scala/barstools/macros/SynFlops.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
package barstools.macros

import barstools.macros.Utils._
import firrtl.Utils._
import firrtl.Utils.{min, one, zero}
import firrtl._
import firrtl.ir._
import firrtl.passes.MemPortUtils.memPortField
Expand Down

0 comments on commit 40bfd71

Please sign in to comment.