From 2fecd1c78bfe240540e21a607e71304c2f28abda Mon Sep 17 00:00:00 2001 From: Wanda Date: Tue, 16 Jan 2024 13:09:16 +0100 Subject: [PATCH] examples.basic.pmux: Fix for RFC 39. --- examples/basic/pmux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/basic/pmux.py b/examples/basic/pmux.py index 2fc7b0c..a2b0433 100644 --- a/examples/basic/pmux.py +++ b/examples/basic/pmux.py @@ -19,7 +19,7 @@ class ParMux(Elaboratable): 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