Skip to content

Commit 7db7dcd

Browse files
committed
[rtl] disable chaining.
1 parent 966738e commit 7db7dcd

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

t1/src/T1.scala

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -657,10 +657,8 @@ class T1(val parameter: T1Parameter)
657657
)
658658
)
659659

660-
val freeOR: Bool = VecInit(slots.map(_.state.idle)).asUInt.orR
661-
662660
/** slot is ready to accept new instructions. */
663-
val slotReady: Bool = Mux(specialInstruction, slots.map(_.state.idle).last, freeOR)
661+
val slotReady: Bool = VecInit(slots.map(_.state.idle)).asUInt.andR
664662

665663
val source1Select: UInt =
666664
Mux(

0 commit comments

Comments
 (0)