9c0bfbd500
Reset vector width is determined by systemBus.busView. Also move some defs from HasCoreParameters to HasTileParameters.
12 lines
285 B
Scala
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))
|
|
}
|