diff options
author | hermitsoft <hermisu@mail.com> | 2017-03-09 15:40:43 +0100 |
---|---|---|
committer | hermitsoft <hermisu@mail.com> | 2017-03-09 15:40:43 +0100 |
commit | dacf221f3b61603b5d1998ca0afca125a5b18d50 (patch) | |
tree | 7e0638d7b052e147fe648682b58d5cf0d7117da8 /icefuzz | |
parent | f7334fcf4a1e8779c56ca5d01ed38cb79fd473bf (diff) | |
download | icestorm-dacf221f3b61603b5d1998ca0afca125a5b18d50.tar.gz icestorm-dacf221f3b61603b5d1998ca0afca125a5b18d50.tar.bz2 icestorm-dacf221f3b61603b5d1998ca0afca125a5b18d50.zip |
make_mesh.py fix for even pin-distribution
Diffstat (limited to 'icefuzz')
-rw-r--r-- | icefuzz/make_mesh.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/icefuzz/make_mesh.py b/icefuzz/make_mesh.py index 47d6595..a2a7d55 100644 --- a/icefuzz/make_mesh.py +++ b/icefuzz/make_mesh.py @@ -10,14 +10,14 @@ os.mkdir("work_mesh") for idx in range(num): with open("work_mesh/mesh_%02d.v" % idx, "w") as f: if os.getenv('ICE384PINS'): - print("module top(input [9:0] a, output [17:0] y);", file=f) + print("module top(input [13:0] a, output [13:0] y);", file=f) else: print("module top(input [39:0] a, output [39:0] y);", file=f) print(" assign y = a;", file=f) print("endmodule", file=f) with open("work_mesh/mesh_%02d.pcf" % idx, "w") as f: p = np.random.permutation(pins) - if os.getenv('ICE384PINS'): r = 18 + if os.getenv('ICE384PINS'): r = 14 else: r = 40 for i in range(r): print("set_io a[%d] %s" % (i, p[i]), file=f) |