All Downloads are FREE. Search and download functionalities are using the official Maven repository.

spinal.lib.bus.wishbone.WishboneGenerators.scala Maven / Gradle / Ivy

The newest version!
package spinal.lib.bus.wishbone

import spinal.lib.bus.bmb.BmbInterconnectGenerator
import spinal.core._
import spinal.core.fiber._

case class WishboneToBmbGenerator()(implicit interconnect : BmbInterconnectGenerator = null) extends Area{
  val config = Handle[WishboneConfig]
  val wishbone = Handle(logic.io.input)
  val bmb = Handle(logic.io.output)
  val logic = Handle(WishboneToBmb(config))

  if(interconnect != null) interconnect.addMaster(
    accessRequirements = config.derivate(WishboneToBmb.getBmbRequirements),
    bus = bmb
  )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy