From: Eddie Hung Date: Tue, 9 Jul 2019 21:28:54 +0000 (-0700) Subject: Restore missing techmap -map +/cmp2lut.v with LUT_WIDTH=6 X-Git-Tag: working-ls180~1208^2~4 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5b48b18d29dabfaa3aa51fc4946f14b0ea8954e2;p=yosys.git Restore missing techmap -map +/cmp2lut.v with LUT_WIDTH=6 --- diff --git a/techlibs/xilinx/synth_xilinx.cc b/techlibs/xilinx/synth_xilinx.cc index 0152af481..7e10a392a 100644 --- a/techlibs/xilinx/synth_xilinx.cc +++ b/techlibs/xilinx/synth_xilinx.cc @@ -2,6 +2,7 @@ * yosys -- Yosys Open SYnthesis Suite * * Copyright (C) 2012 Clifford Wolf + * (C) 2019 Eddie Hung * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -252,6 +253,7 @@ struct SynthXilinxPass : public ScriptPass run("wreduce" + std::string(widemux > 0 ? " -keepdc" : "")); run("peepopt"); run("opt_clean"); + run("techmap -map +/cmp2lut.v -D LUT_WIDTH=6"); run("alumacc"); run("share"); run("opt");