diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-09-18 21:57:34 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-09-18 21:57:34 +0200 |
commit | 598a475724b51954cb40c991dc3ed26cc11f81ec (patch) | |
tree | 2a5cfe3d5f57af8dd0412a49a99404a0b67f73ff /techlibs | |
parent | c851f51656a80edd47eabc7fafbe69d56dea9fae (diff) | |
download | yosys-598a475724b51954cb40c991dc3ed26cc11f81ec.tar.gz yosys-598a475724b51954cb40c991dc3ed26cc11f81ec.tar.bz2 yosys-598a475724b51954cb40c991dc3ed26cc11f81ec.zip |
Added nlutmap
Diffstat (limited to 'techlibs')
-rw-r--r-- | techlibs/greenpak4/synth_greenpak4.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/greenpak4/synth_greenpak4.cc b/techlibs/greenpak4/synth_greenpak4.cc index 8b88667c4..15b53d623 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"); } |