mirror of https://github.com/YosysHQ/yosys.git
produce less cells
This commit is contained in:
parent
74289b7339
commit
989eef29b2
|
@ -1,3 +1,4 @@
|
|||
(* abc9_lut=1 *)
|
||||
module NX_LUT(input I1, I2, I3, I4, output O);
|
||||
|
||||
parameter lut_table = 16'h0000;
|
||||
|
|
|
@ -229,9 +229,10 @@ struct SynthNanoXplorePass : public ScriptPass
|
|||
|
||||
if (check_label("map_ffram"))
|
||||
{
|
||||
run("opt -fast -mux_undef -undriven -fine");
|
||||
//run("opt -fast -mux_undef -undriven -fine");
|
||||
run("memory_map");
|
||||
run("opt -undriven -fine -mux_undef");
|
||||
run("opt -full");
|
||||
//run("opt -undriven -fine -mux_undef");
|
||||
}
|
||||
|
||||
if (check_label("map_gates"))
|
||||
|
|
Loading…
Reference in New Issue