hdl.ast,back.rtlil: implement Cover.

Fixes #194.
This commit is contained in:
whitequark 2019-09-03 01:32:24 +00:00
parent 2e20622046
commit 943ce317af
7 changed files with 47 additions and 28 deletions

View file

@ -74,7 +74,7 @@ class DSLTestCase(FHDLTestCase):
def test_d_asgn_wrong(self):
m = Module()
with self.assertRaises(SyntaxError,
msg="Only assignments, asserts, and assumes may be appended to d.sync"):
msg="Only assignments and property checks may be appended to d.sync"):
m.d.sync += Switch(self.s1, {})
def test_comb_wrong(self):