Skip to content

Commit

Permalink
fall_through_register: Fix description
Browse files Browse the repository at this point in the history
  • Loading branch information
mp-17 committed Nov 1, 2024
1 parent 554ebbc commit 7cc9292
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/fall_through_register.sv
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@
// specific language governing permissions and limitations under the License.

// Fall-through register with a simple stream-like ready/valid handshake.
// This register does not cut combinatorial paths on any signals: in case the module at its output
// is ready to accept data within the same clock cycle, they are forwarded. Use this module to get a
// 'default ready' behavior towards the input.
// This register does not cut the combinatorial path on the valid and data signals.
// It only cuts the combinatorial path on the ready signal.
// In case the module at its output is ready to accept data within the same clock cycle, they are forwarded.
// Use this module to get a 'default ready' behavior towards the input.
module fall_through_register #(
parameter type T = logic // Vivado requires a default value for type parameters.
) (
Expand Down

0 comments on commit 7cc9292

Please sign in to comment.