Browse Source

Fix wrong MuxLookup definition. Sorry :(

master
peteraa 6 years ago
parent
commit
9358c3a6be
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      exercise.org

+ 2
- 1
exercise.org 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

*** Step 6:


Loading…
Cancel
Save