Add log output

This commit is contained in:
Miodrag Milanovic 2025-07-07 16:23:37 +02:00
parent 0ebd7afab9
commit 0b8433e655
2 changed files with 2 additions and 1 deletions

View File

@ -333,7 +333,7 @@ void GateMatePacker::remove_clocking()
void GateMatePacker::pack_pll()
{
std::vector<int> 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))

View File

@ -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))