From 9358c3a6be66dd15bfc34846d09c639e7a266f8a Mon Sep 17 00:00:00 2001 From: peteraa Date: Thu, 29 Aug 2019 16:33:06 +0200 Subject: [PATCH] Fix wrong MuxLookup definition. Sorry :( --- exercise.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/exercise.org b/exercise.org index e7155b5..c33faad 100644 --- a/exercise.org +++ b/exercise.org @@ -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 *** Step 6: