Skip to content

Commit

Permalink
examples.basic.pmux: Fix for RFC 39.
Browse files Browse the repository at this point in the history
  • Loading branch information
wanda-phi authored and whitequark committed Jan 16, 2024
1 parent 57d9c49 commit 197c234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/basic/pmux.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def elaborate(self, platform):
m.d.comb += self.o.eq(self.b)
with m.Case("1--"):
m.d.comb += self.o.eq(self.c)
with m.Case():
with m.Default():
m.d.comb += self.o.eq(0)
return m

Expand Down

0 comments on commit 197c234

Please sign in to comment.