1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-04-14 07:50:36 +00:00

Merge pull request #733 from acomodi/interchange-move-macro-before-io

interchange: arch: move macro expansion step before ios packing
This commit is contained in:
gatecat
2021-06-18 19:09:18 +01:00
committed by GitHub

View File

@@ -755,9 +755,9 @@ bool Arch::pack()
{
decode_lut_cells();
merge_constant_nets();
expand_macros();
pack_ports();
pack_default_conns();
expand_macros();
pack_cluster();
return true;
}