From 512daf2c897e84738684566188c86024ae5abe8c Mon Sep 17 00:00:00 2001 From: "William D. Jones" Date: Sat, 27 Jun 2020 19:43:16 -0400 Subject: machxo2: Remove generic packing. --- machxo2/arch.cc | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'machxo2/arch.cc') diff --git a/machxo2/arch.cc b/machxo2/arch.cc index 70de80cf..ed62ed37 100644 --- a/machxo2/arch.cc +++ b/machxo2/arch.cc @@ -491,16 +491,7 @@ const std::vector Arch::availableRouters = {"router1", "router2"}; void Arch::assignArchInfo() { - for (auto &cell : getCtx()->cells) { - CellInfo *ci = cell.second.get(); - if (ci->type == id("GENERIC_SLICE")) { - ci->is_slice = true; - ci->slice_clk = get_net_or_empty(ci, id("CLK")); - } else { - ci->is_slice = false; - } - ci->user_group = int_or_default(ci->attrs, id("PACK_GROUP"), -1); - } + } bool Arch::cellsCompatible(const CellInfo **cells, int count) const -- cgit v1.2.3