Use copy ALU OPs.

This commit is contained in:
Sebastian Bugge 2024-10-03 14:40:30 +02:00
parent e09a358320
commit 934593fb6f
Signed by: kaholaz
GPG key ID: 2EFFEDEE03519691
4 changed files with 42 additions and 42 deletions

View file

@ -80,10 +80,9 @@ object branchType {
using them altogether.
*/
object Op1Select {
val rs1 = 0.asUInt(2.W)
val PC = 1.asUInt(2.W)
val Zero = 2.asUInt(2.W)
val DC = 3.asUInt(2.W)
val rs1 = 0.asUInt(1.W)
val PC = 1.asUInt(1.W)
val DC = 0.asUInt(1.W)
}
object Op2Select {