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

spinal.lib.bus.amba3.apb.Apb3Dummy.scala Maven / Gradle / Ivy

There is a newer version: 1.10.2a
Show newest version
package spinal.lib.bus.amba3.apb

import spinal.core._
import spinal.lib._

case class Apb3Dummy(config : Apb3Config) extends Component {
  val io = new Bundle {
    val apb = slave(Apb3(config))
  }
  io.apb.PREADY := True
  io.apb.PRDATA := 0
  if(config.useSlaveError) io.apb.PSLVERROR := False
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy