AHB/AXI updated

This commit is contained in:
​Laraib Khan 2021-01-15 11:01:11 +05:00
parent 81f85d455b
commit ce64b77952
1 changed files with 11 additions and 12 deletions

View File

@ -146,7 +146,6 @@ class ahb_to_axi4(TAG : Int) extends Module with lib with RequireAsyncReset {
// AXI Read Response Channel - Always ready as AHB reads are blocking and the the buffer is available for the read coming back always. // AXI Read Response Channel - Always ready as AHB reads are blocking and the the buffer is available for the read coming back always.
io.axi.r.ready := true.B io.axi.r.ready := true.B
} }
//object ahb_to_axi4 extends App {
object ahb_to_axi4 extends App { // println((new chisel3.stage.ChiselStage).emitVerilog(new ahb_to_axi4(1)))
println((new chisel3.stage.ChiselStage).emitVerilog(new ahb_to_axi4(1))) //}
}