1
0
Files
rocket-chip/src/main/scala/coreplex/package.scala
2017-10-25 16:56:51 -07:00

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)
}