1
0

Chisel3 <> reverse fix

This commit is contained in:
Palmer Dabbelt 2016-02-05 09:56:42 -08:00
parent c944193e16
commit 3bb0f11e6c

View File

@ -11,7 +11,7 @@ class MemDessert(topParams: Parameters) extends Module {
implicit val p = topParams
val io = new MemDesserIO(p(HtifKey).width)
val x = Module(new MemDesser(p(HtifKey).width))
io.narrow <> x.io.narrow
x.io.narrow <> io.narrow
io.wide <> x.io.wide
}