Fix wrong MuxLookup definition. Sorry :(

This commit is contained in:
peteraa 2019-08-29 16:33:06 +02:00
parent 4a4717b312
commit 9358c3a6be

View file

@ -247,7 +247,8 @@
... ...
) )
io.aluResult := MuxLookup(0.U(32.W), io.aluOp, ALUopMap) // MuxLookup API: https://github.com/freechipsproject/chisel3/wiki/Muxes-and-Input-Selection#muxlookup
io.aluResult := MuxLookup(io.aluOp, 0.U(32.W), ALUopMap)
#+END_SRC #+END_SRC
*** Step 6: *** Step 6: