1
0
rocket-chip/src/main/scala/coreplex/ResetVector.scala
Henry Cook 9c0bfbd500 tile: remove global Field ResetVectorBits
Reset vector width is determined by systemBus.busView.
Also move some defs from HasCoreParameters to HasTileParameters.
2017-09-08 14:50:59 -07:00

12 lines
285 B
Scala

// See LICENSE.SiFive for license details.
package freechips.rocketchip.coreplex
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))
}