summaryrefslogtreecommitdiff
path: root/techlibs
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2015-09-18 21:57:34 +0200
committerClifford Wolf <clifford@clifford.at>2015-09-18 21:57:34 +0200
commit598a475724b51954cb40c991dc3ed26cc11f81ec (patch)
tree2a5cfe3d5f57af8dd0412a49a99404a0b67f73ff /techlibs
parentc851f51656a80edd47eabc7fafbe69d56dea9fae (diff)
Added nlutmap
Diffstat (limited to 'techlibs')
-rw-r--r--techlibs/greenpak4/synth_greenpak4.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/greenpak4/synth_greenpak4.cc b/techlibs/greenpak4/synth_greenpak4.cc
index 8b88667c..15b53d62 100644
--- a/techlibs/greenpak4/synth_greenpak4.cc
+++ b/techlibs/greenpak4/synth_greenpak4.cc
@@ -91,7 +91,7 @@ struct SynthGreenPAK4Pass : public Pass {
log(" abc -dff (only if -retime)\n");
log("\n");
log(" map_luts:\n");
- log(" abc -lut 4\n");
+ log(" nlutmap -luts 0,8,16,2\n");
log(" clean\n");
log("\n");
log(" map_cells:\n");
@@ -197,7 +197,7 @@ struct SynthGreenPAK4Pass : public Pass {
if (check_label(active, run_from, run_to, "map_luts"))
{
- Pass::call(design, "abc -lut 4");
+ Pass::call(design, "nlutmap -luts 0,8,16,2");
Pass::call(design, "clean");
}