9 lines
171 B
Scala
9 lines
171 B
Scala
|
package uncore
|
||
|
|
||
|
import Chisel._
|
||
|
|
||
|
package object tilelink2
|
||
|
{
|
||
|
type TLBaseNode = BaseNode[TLClientPortParameters, TLManagerPortParameters, TLEdgeOut, TLEdgeIn, TLBundle]
|
||
|
}
|