Skip to content

Commit

Permalink
[GCD] Fix GCD example (#465)
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryz123 authored Mar 10, 2020
1 parent d0bec3f commit 0a66a35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generators/chipyard/src/main/scala/example/GCD.scala
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ trait GCDModule extends HasRegMap {
gcd.valid := impl.io.output_valid
impl.io.output_ready := gcd.ready

status := Cat(impl.io.input_ready, impl.io.output_ready)
status := Cat(impl.io.input_ready, impl.io.output_valid)
io.gcd_busy := impl.io.busy

regmap(
Expand Down

0 comments on commit 0a66a35

Please sign in to comment.