aboutsummaryrefslogtreecommitdiff
path: root/icefuzz/make_mesh.py
diff options
context:
space:
mode:
authorhermitsoft <hermisu@mail.com>2017-03-07 18:11:07 +0100
committerhermitsoft <hermisu@mail.com>2017-03-07 18:11:07 +0100
commit2ca9f929ac58e40c3918513bb9182ca0b929086e (patch)
tree90917e612674cce79986a2287bdf6a4facf99ded /icefuzz/make_mesh.py
parent2281f915369f2186b8a627d304ff672a73e11c7f (diff)
Fixes for LP384 in some make_xx.py, etc
Diffstat (limited to 'icefuzz/make_mesh.py')
-rw-r--r--icefuzz/make_mesh.py13
1 files changed, 9 insertions, 4 deletions
diff --git a/icefuzz/make_mesh.py b/icefuzz/make_mesh.py
index 96e6044..1a69ca4 100644
--- a/icefuzz/make_mesh.py
+++ b/icefuzz/make_mesh.py
@@ -9,15 +9,20 @@ os.mkdir("work_mesh")
for idx in range(num):
with open("work_mesh/mesh_%02d.v" % idx, "w") as f:
- print("module top(input [39:0] a, output [39:0] y);", file=f)
+ if os.getenv('ICE384PINS'):
+ print("module top(input [9:0] a, output [9: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)
- for i in range(40):
+ if os.getenv('ICE384PINS'): r = 10
+ else: r = 40
+ for i in range(r):
print("set_io a[%d] %s" % (i, p[i]), file=f)
- for i in range(40):
- print("set_io y[%d] %s" % (i, p[40+i]), file=f)
+ for i in range(r):
+ print("set_io y[%d] %s" % (i, p[r+i]), file=f)
with open("work_mesh/Makefile", "w") as f:
print("all: %s" % " ".join(["mesh_%02d.bin" % i for i in range(num)]), file=f)