Merge pull request #1897 from machdyne/master

support TQFP144 ECP5 package
This commit is contained in:
enjoy-digital 2024-03-05 21:26:22 +01:00 committed by GitHub
commit f304cba8a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -128,6 +128,8 @@ class LatticeTrellisToolchain(YosysNextPNRToolchain):
package = "CABGA554"
elif "756" in package:
package = "CABGA756"
elif "144" in package:
package = "TQFP144"
else:
raise ValueError("Invalid package {}".format(package))
return (family, size, speed_grade, package)