Add local interrupts to core (but not yet to coreplex)
This commit is contained in:
@ -23,6 +23,7 @@ trait CoreParams {
|
||||
val decodeWidth: Int
|
||||
val retireWidth: Int
|
||||
val instBits: Int
|
||||
val nLocalInterrupts: Int
|
||||
}
|
||||
|
||||
trait HasCoreParameters extends HasTileParameters {
|
||||
|
@ -7,6 +7,7 @@ import config.Parameters
|
||||
import util._
|
||||
|
||||
class TileInterrupts(implicit p: Parameters) extends CoreBundle()(p) {
|
||||
val lip = Vec(coreParams.nLocalInterrupts, Bool())
|
||||
val debug = Bool()
|
||||
val mtip = Bool()
|
||||
val msip = Bool()
|
||||
|
Reference in New Issue
Block a user