1
0
Fork 0
rocket-chip/src/main/scala/subsystem/ResetVector.scala

12 lines
286 B
Scala
Raw Normal View History

2017-08-01 06:12:45 +02:00
// See LICENSE.SiFive for license details.
2018-01-12 21:29:27 +01:00
package freechips.rocketchip.subsystem
import Chisel._
/** A single place for all tiles to find out the reset vector */
trait HasResetVectorWire {
def resetVectorBits: Int
val global_reset_vector = Wire(UInt(width = resetVectorBits))
}