mirror of https://github.com/YosysHQ/nextpnr.git
Add log output
This commit is contained in:
parent
0ebd7afab9
commit
0b8433e655
|
|
@ -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))
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Reference in New Issue