examples.basic.pmux: Fix for RFC 39.

This commit is contained in:
Wanda 2024-01-16 13:09:16 +01:00 committed by Catherine
parent 95538a3e07
commit 2fecd1c78b

View file

@ -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