aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/shregmap.cc
diff options
context:
space:
mode:
authorAndrew Zonenberg <azonenberg@drawersteak.com>2016-05-04 17:04:50 -0700
committerAndrew Zonenberg <azonenberg@drawersteak.com>2016-05-04 17:04:50 -0700
commit3486637b19030bc65af77c99c282ff5a7e610ee8 (patch)
tree3e5220372dae50b9cb631915153878d56531dae4 /passes/techmap/shregmap.cc
parentdee1c27a19f91fb44df67b2ab9834ee8140772c4 (diff)
downloadyosys-3486637b19030bc65af77c99c282ff5a7e610ee8.tar.gz
yosys-3486637b19030bc65af77c99c282ff5a7e610ee8.tar.bz2
yosys-3486637b19030bc65af77c99c282ff5a7e610ee8.zip
Changed port names in greenpak shregmap
Diffstat (limited to 'passes/techmap/shregmap.cc')
-rw-r--r--passes/techmap/shregmap.cc2
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++;
}