From f7334fcf4a1e8779c56ca5d01ed38cb79fd473bf Mon Sep 17 00:00:00 2001 From: hermitsoft Date: Thu, 9 Mar 2017 15:23:54 +0100 Subject: Maximized icefuzz testcases for LP384-CM49 --- icefuzz/make_mesh.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'icefuzz/make_mesh.py') diff --git a/icefuzz/make_mesh.py b/icefuzz/make_mesh.py index 1a69ca4..47d6595 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 [9:0] y);", file=f) + print("module top(input [9:0] a, output [17: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 = 10 + if os.getenv('ICE384PINS'): r = 18 else: r = 40 for i in range(r): print("set_io a[%d] %s" % (i, p[i]), file=f) -- cgit v1.2.3