[icepll] Fixing the lint error reported in https://github.com/YosysHQ/icestorm/issues/352 by generating also the list of the unused PLL signals.

This commit is contained in:
Zapta 2025-07-09 14:30:57 -07:00
parent f31c39cc2e
commit 82e708b4c4
No known key found for this signature in database
GPG Key ID: 63E0849085CF0ED7
1 changed files with 9 additions and 1 deletions

View File

@ -413,7 +413,15 @@ int main(int argc, char **argv)
"\t\t.RESETB(1'b1),\n"
"\t\t.BYPASS(1'b0),\n"
"\t\t.%s(clock_in),\n"
"\t\t.PLLOUTCORE(clock_out)\n"
"\t\t.PLLOUTCORE(clock_out),\n\n"
"\t\t/* Unused */\n"
"\t\t.PLLOUTGLOBAL(),\n"
"\t\t.EXTFEEDBACK(),\n"
"\t\t.LATCHINPUTVALUE(),\n"
"\t\t.SDO(),\n"
"\t\t.SDI(),\n"
"\t\t.SCLK(),\n"
"\t\t.DYNAMICDELAY()\n"
"\t\t);\n\n", (pad ? "PACKAGEPIN":"REFERENCECLK")
);