diff options
author | Clifford Wolf <clifford@clifford.at> | 2017-03-19 14:53:28 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2017-03-19 14:53:28 +0100 |
commit | 850f8299a9374ae4b9caeca8b6cd888be7c0a406 (patch) | |
tree | 4f332696647cb6579e6b2a18b3110d08271d0aaf /backends/edif/runtest.py | |
parent | 1390e9a0a7d4872e24a9fe53e258b8097932392a (diff) | |
download | yosys-850f8299a9374ae4b9caeca8b6cd888be7c0a406.tar.gz yosys-850f8299a9374ae4b9caeca8b6cd888be7c0a406.tar.bz2 yosys-850f8299a9374ae4b9caeca8b6cd888be7c0a406.zip |
Fix EDIF: portRef member 0 is always the MSB bit
Diffstat (limited to 'backends/edif/runtest.py')
-rw-r--r-- | backends/edif/runtest.py | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/backends/edif/runtest.py b/backends/edif/runtest.py index ced5fda5c..c842e6784 100644 --- a/backends/edif/runtest.py +++ b/backends/edif/runtest.py @@ -5,6 +5,7 @@ import numpy as np enable_upto = True enable_offset = True +enable_hierarchy = True def make_module(f, modname, width, subs): print("module %s (A, B, C, X, Y, Z);" % modname, file=f) @@ -60,13 +61,16 @@ def make_module(f, modname, width, subs): print("endmodule", file=f) with open("test_top.v", "w") as f: - make_module(f, "sub1", 2, {}) - make_module(f, "sub2", 3, {}) - make_module(f, "sub3", 4, {}) - make_module(f, "sub4", 8, {"sub1": 2, "sub2": 3, "sub3": 4}) - make_module(f, "sub5", 8, {"sub1": 2, "sub2": 3, "sub3": 4}) - make_module(f, "sub6", 8, {"sub1": 2, "sub2": 3, "sub3": 4}) - make_module(f, "top", 32, {"sub4": 8, "sub5": 8, "sub6": 8}) + if enable_hierarchy: + make_module(f, "sub1", 2, {}) + make_module(f, "sub2", 3, {}) + make_module(f, "sub3", 4, {}) + make_module(f, "sub4", 8, {"sub1": 2, "sub2": 3, "sub3": 4}) + make_module(f, "sub5", 8, {"sub1": 2, "sub2": 3, "sub3": 4}) + make_module(f, "sub6", 8, {"sub1": 2, "sub2": 3, "sub3": 4}) + make_module(f, "top", 32, {"sub4": 8, "sub5": 8, "sub6": 8}) + else: + make_module(f, "top", 32, {}) os.system("set -x; ../../yosys -p 'prep -top top; write_edif -pvector par test_syn.edif' test_top.v") |