13 lines
326 B
Scala
13 lines
326 B
Scala
// See LICENSE.SiFive for license details.
|
|
|
|
package freechips.rocketchip
|
|
|
|
import freechips.rocketchip.tilelink.TLOutwardNode
|
|
import freechips.rocketchip.interrupts.IntOutwardNode
|
|
|
|
package object coreplex
|
|
{
|
|
implicit class TLCrossableNode(val node: TLOutwardNode)
|
|
implicit class IntCrossableNode(val node: IntOutwardNode)
|
|
}
|