Skip to content

Commit 197c234

Browse files
wanda-phiwhitequark
authored andcommitted
examples.basic.pmux: Fix for RFC 39.
1 parent 57d9c49 commit 197c234

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/basic/pmux.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def elaborate(self, platform):
1919
m.d.comb += self.o.eq(self.b)
2020
with m.Case("1--"):
2121
m.d.comb += self.o.eq(self.c)
22-
with m.Case():
22+
with m.Default():
2323
m.d.comb += self.o.eq(0)
2424
return m
2525

0 commit comments

Comments
 (0)