diff options
author | Clifford Wolf <clifford@clifford.at> | 2017-03-11 11:06:53 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2017-03-11 11:06:53 +0100 |
commit | ca19eafe7aaf881273af5f744924423b6ce3a5c0 (patch) | |
tree | 429c136200b76a4a3621e71f62c608365998b142 /icefuzz/make_fanout.py | |
parent | 1f1f10b7f08941b1fbffca51452888b8d08e56a0 (diff) | |
parent | e832acc445f64d1f9379eef8ef01576ccc0494b6 (diff) | |
download | icestorm-ca19eafe7aaf881273af5f744924423b6ce3a5c0.tar.gz icestorm-ca19eafe7aaf881273af5f744924423b6ce3a5c0.tar.bz2 icestorm-ca19eafe7aaf881273af5f744924423b6ce3a5c0.zip |
Merge branch 'master' of https://github.com/hermitsoft/icestorm
Diffstat (limited to 'icefuzz/make_fanout.py')
-rw-r--r-- | icefuzz/make_fanout.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/icefuzz/make_fanout.py b/icefuzz/make_fanout.py index 1102cc0..510fa00 100644 --- a/icefuzz/make_fanout.py +++ b/icefuzz/make_fanout.py @@ -10,7 +10,7 @@ os.mkdir("work_fanout") for idx in range(num): with open("work_fanout/fanout_%02d.v" % idx, "w") as f: if os.getenv('ICE384PINS'): - print("module top(input [1:0] a, output [15:0] y);", file=f) + print("module top(input [1:0] a, output [33:0] y);", file=f) print(" assign y = {8{a}};", file=f) else: print("module top(input [1:0] a, output [63:0] y);", file=f) @@ -18,7 +18,7 @@ for idx in range(num): print("endmodule", file=f) with open("work_fanout/fanout_%02d.pcf" % idx, "w") as f: p = np.random.permutation(pins) - r = 16 if os.getenv('ICE384PINS') else 64 + r = 34 if os.getenv('ICE384PINS') else 64 for i in range(r): print("set_io y[%d] %s" % (i, p[i]), file=f) print("set_io a[0] %s" % p[r], file=f) |