Compare commits
1 commit
24aeabee4f
...
f5335c21f1
Author | SHA1 | Date | |
---|---|---|---|
f5335c21f1 |
1 changed files with 0 additions and 2 deletions
|
@ -94,7 +94,6 @@ class newALU(implicit p: Params) extends Module {
|
|||
val b = Input(Vec(SrcBSelect.all.length, UInt(p.XLEN)))
|
||||
})
|
||||
val out = IO(new Bundle {
|
||||
val isEqual = Output(Bool())
|
||||
val result = Output(UInt(p.XLEN))
|
||||
})
|
||||
|
||||
|
@ -113,7 +112,6 @@ class newALU(implicit p: Params) extends Module {
|
|||
val sll = a << b(5, 0)
|
||||
val srl = a >> b(5, 0)
|
||||
val sra = a.asSInt >> b(5, 0)
|
||||
out.isEqual := a === b
|
||||
|
||||
import OpSelect._
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue