Change uses of Case() to Default() in preparation for RFC 39.
This commit is contained in:
parent
7e18786c97
commit
ea258fad71
2 changed files with 2 additions and 2 deletions
|
|
@ -509,7 +509,7 @@ class SimulatorIntegrationTestCase(FHDLTestCase):
|
|||
self.m.d.sync += self.o.eq(self.a + self.b)
|
||||
with self.m.Case(1):
|
||||
self.m.d.sync += self.o.eq(self.a - self.b)
|
||||
with self.m.Case():
|
||||
with self.m.Default():
|
||||
self.m.d.sync += self.o.eq(0)
|
||||
self.m.domains += self.sync
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue