From 0b8433e655bcc6c47c9cea9efafe175840b5ca71 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Mon, 7 Jul 2025 16:23:37 +0200 Subject: [PATCH] Add log output --- himbaechel/uarch/gatemate/pack_clocking.cc | 2 +- himbaechel/uarch/gatemate/pack_io.cc | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/himbaechel/uarch/gatemate/pack_clocking.cc b/himbaechel/uarch/gatemate/pack_clocking.cc index 8e6d8eae..4b68cd97 100644 --- a/himbaechel/uarch/gatemate/pack_clocking.cc +++ b/himbaechel/uarch/gatemate/pack_clocking.cc @@ -333,7 +333,7 @@ void GateMatePacker::remove_clocking() void GateMatePacker::pack_pll() { std::vector pll_index(uarch->dies); - log_info("Packing PLLss..\n"); + log_info("Packing PLLs..\n"); for (auto &cell : ctx->cells) { CellInfo &ci = *cell.second; if (!ci.type.in(id_CC_PLL, id_CC_PLL_ADV)) diff --git a/himbaechel/uarch/gatemate/pack_io.cc b/himbaechel/uarch/gatemate/pack_io.cc index 8875614f..994b265d 100644 --- a/himbaechel/uarch/gatemate/pack_io.cc +++ b/himbaechel/uarch/gatemate/pack_io.cc @@ -33,6 +33,7 @@ std::string get_die_name(int total_dies, int die) void GateMatePacker::pack_io() { + log_info("Packing IOs..\n"); // Trim nextpnr IOBs - assume IO buffer insertion has been done in synthesis for (auto &port : ctx->ports) { if (!ctx->cells.count(port.first))