diff --git a/himbaechel/uarch/ng-ultra/pack.cc b/himbaechel/uarch/ng-ultra/pack.cc index f6ee8358..27bca4ef 100644 --- a/himbaechel/uarch/ng-ultra/pack.cc +++ b/himbaechel/uarch/ng-ultra/pack.cc @@ -2099,8 +2099,10 @@ void NgUltraImpl::pack() packer.pack_cys(); if (!args.options.count("no-xlut")) packer.pack_xluts(); - packer.pack_lut_multi_dffs(); - packer.pack_dff_chains(); + if (!args.options.count("no-lut-chains")) + packer.pack_lut_multi_dffs(); + if (!args.options.count("no-dff-chains")) + packer.pack_dff_chains(); packer.pack_lut_dffs(); packer.pack_dffs();