* Refactors package hierarchy. Additionally: - Removes legacy ground tests and configs - Removes legacy bus protocol implementations - Removes NTiles - Adds devices package - Adds more functions to util package
12 lines
277 B
Scala
12 lines
277 B
Scala
// See LICENSE.SiFive for license details.
|
|
|
|
package freechips.rocketchip.amba
|
|
|
|
import Chisel._
|
|
import freechips.rocketchip.diplomacy.OutwardNodeHandle
|
|
|
|
package object apb
|
|
{
|
|
type APBOutwardNode = OutwardNodeHandle[APBMasterPortParameters, APBSlavePortParameters, APBBundle]
|
|
}
|