Skip to content

Commit

Permalink
[rtl] disable chaining.
Browse files Browse the repository at this point in the history
  • Loading branch information
qinjun-li committed Nov 20, 2024
1 parent 966738e commit 7db7dcd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions t1/src/T1.scala
Original file line number Diff line number Diff line change
Expand Up @@ -657,10 +657,8 @@ class T1(val parameter: T1Parameter)
)
)

val freeOR: Bool = VecInit(slots.map(_.state.idle)).asUInt.orR

/** slot is ready to accept new instructions. */
val slotReady: Bool = Mux(specialInstruction, slots.map(_.state.idle).last, freeOR)
val slotReady: Bool = VecInit(slots.map(_.state.idle)).asUInt.andR

val source1Select: UInt =
Mux(
Expand Down

0 comments on commit 7db7dcd

Please sign in to comment.