Skip to content

Add field grouping ScalaDoc for DecoupledIO #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/main/scala/chisel3/util/Decoupled.scala
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ abstract class ReadyValidIO[+T <: Data](gen: T) extends Bundle
case _ => gen
}

/** Indicates that the consumer is ready to accept the data this cycle

* @group Signals
*/
val ready = Input(Bool())

/** Indicates that the producer has put valid data in 'bits'

* @group Signals
*/
val valid = Output(Bool())

/** The data to be transferred when ready and valid are asserted at the same cycle

* @group Signals
*/
val bits = Output(genType)
Expand Down