Skip to content

Commit

Permalink
produce less cells
Browse files Browse the repository at this point in the history
  • Loading branch information
mmicko committed Mar 11, 2024
1 parent c78f5ea commit a7036db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions techlibs/nanoxplore/cells_sim.v
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
(* abc9_lut=1 *)
module NX_LUT(input I1, I2, I3, I4, output O);

parameter lut_table = 16'h0000;
Expand Down
5 changes: 3 additions & 2 deletions techlibs/nanoxplore/synth_nanoxplore.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down

0 comments on commit a7036db

Please sign in to comment.