Merge pull request #311 from kbeckmann/trellis_cabga256

trellis: Support the CABGA256 package
This commit is contained in:
Tim Ansell 2019-11-29 19:05:56 -08:00 committed by GitHub
commit 90f9ffc505
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -32,6 +32,8 @@ nextpnr_ecp5_architectures = {
def nextpnr_ecp5_package(package):
if "285" in package:
return "CSFBGA285"
elif "256" in package:
return "CABGA256"
elif "381" in package:
return "CABGA381"
elif "554" in package: