diff options
author | Andrew Zonenberg <azonenberg@drawersteak.com> | 2016-05-04 17:04:50 -0700 |
---|---|---|
committer | Andrew Zonenberg <azonenberg@drawersteak.com> | 2016-05-04 17:04:50 -0700 |
commit | 3486637b19030bc65af77c99c282ff5a7e610ee8 (patch) | |
tree | 3e5220372dae50b9cb631915153878d56531dae4 /passes/techmap | |
parent | dee1c27a19f91fb44df67b2ab9834ee8140772c4 (diff) | |
download | yosys-3486637b19030bc65af77c99c282ff5a7e610ee8.tar.gz yosys-3486637b19030bc65af77c99c282ff5a7e610ee8.tar.bz2 yosys-3486637b19030bc65af77c99c282ff5a7e610ee8.zip |
Changed port names in greenpak shregmap
Diffstat (limited to 'passes/techmap')
-rw-r--r-- | passes/techmap/shregmap.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/shregmap.cc b/passes/techmap/shregmap.cc index 7a8495b79..766c1c65f 100644 --- a/passes/techmap/shregmap.cc +++ b/passes/techmap/shregmap.cc @@ -82,7 +82,7 @@ struct ShregmapTechGreenpak4 : ShregmapTech int i = 0; for (auto tap : taps) { newcell->setPort(i ? "\\OUTB" : "\\OUTA", tap.second); - newcell->setParam(i ? "\\OUTB_DELAY" : "\\OUTA_DELAY", tap.first + 1); + newcell->setParam(i ? "\\OUTB_TAP" : "\\OUTA_TAP", tap.first + 1); i++; } |