1
0

only use companion objects for types

This commit is contained in:
Colin Schmidt 2016-09-07 12:32:34 -07:00
parent 02a2439222
commit 254f49093c

View File

@ -61,7 +61,7 @@ abstract class Coreplex(implicit val p: Parameters) extends Module
val mmio = p(ExportMMIOPort).option(new ClientUncachedTileLinkIO()(outermostMMIOParams))
val interrupts = Vec(p(NExtInterrupts), Bool()).asInput
val debug = new DebugBusIO()(p).flip
val rtcTick = new Bool(INPUT)
val rtcTick = Bool(INPUT)
val extra = p(ExtraCoreplexPorts)(p)
val success: Option[Bool] = hasSuccessFlag.option(Bool(OUTPUT))
}