aboutsummaryrefslogtreecommitdiffstats
path: root/icefuzz/make_logic.py
diff options
context:
space:
mode:
authorhermitsoft <hermisu@mail.com>2017-03-09 15:23:54 +0100
committerhermitsoft <hermisu@mail.com>2017-03-09 15:23:54 +0100
commitf7334fcf4a1e8779c56ca5d01ed38cb79fd473bf (patch)
treedeb8cd5389761a936251fc5179574f6df8bd493b /icefuzz/make_logic.py
parent62b7f71319a73ed10c0428f09e9dae698bdcb116 (diff)
downloadicestorm-f7334fcf4a1e8779c56ca5d01ed38cb79fd473bf.tar.gz
icestorm-f7334fcf4a1e8779c56ca5d01ed38cb79fd473bf.tar.bz2
icestorm-f7334fcf4a1e8779c56ca5d01ed38cb79fd473bf.zip
Maximized icefuzz testcases for LP384-CM49
Diffstat (limited to 'icefuzz/make_logic.py')
-rw-r--r--icefuzz/make_logic.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/icefuzz/make_logic.py b/icefuzz/make_logic.py
index 37aa16c..0d45a03 100644
--- a/icefuzz/make_logic.py
+++ b/icefuzz/make_logic.py
@@ -13,14 +13,14 @@ def random_op():
for idx in range(num):
with open("work_logic/logic_%02d.v" % idx, "w") as f:
if os.getenv('ICE384PINS'):
- print("module top(input [3:0] a, b, c, d, output [3:0] y);", file=f)
+ print("module top(input [5:0] a, b, c, d, output [5:0] y);", file=f)
else:
print("module top(input [15:0] a, b, c, d, output [15:0] y);", file=f)
print(" assign y = (a %s b) %s (c %s d);" % (random_op(), random_op(), random_op()), file=f)
print("endmodule", file=f)
with open("work_logic/logic_%02d.pcf" % idx, "w") as f:
p = np.random.permutation(pins)
- r = 4 if os.getenv('ICE384PINS') else 16
+ r = 6 if os.getenv('ICE384PINS') else 16
for i in range(r):
print("set_io a[%d] %s" % (i, p[i]), file=f)
print("set_io b[%d] %s" % (i, p[i+r]), file=f)