Format utlilisation for larger FPGA as well

This commit is contained in:
Miodrag Milanovic 2024-05-03 11:52:59 +02:00 committed by myrtle
parent 3f2451f8d7
commit 0dc4bcb203

View File

@ -44,7 +44,7 @@ void print_utilisation(const Context *ctx)
for (auto type : available_types) {
IdString type_id = type.first;
int used_bels = get_or_default(used_types, type.first, 0);
log_info("\t%20s: %5d/%5d %5d%%\n", type_id.c_str(ctx), used_bels, type.second, 100 * used_bels / type.second);
log_info("\t%20s: %7d/%7d %5d%%\n", type_id.c_str(ctx), used_bels, type.second, 100 * used_bels / type.second);
}
log_break();
}