diff --git a/examples/basic/pmux.py b/examples/basic/pmux.py index 2fc7b0cf4..a2b043342 100644 --- a/examples/basic/pmux.py +++ b/examples/basic/pmux.py @@ -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