aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormyrtle <gatecat@ds0.me>2022-11-12 11:17:06 +0100
committerGitHub <noreply@github.com>2022-11-12 11:17:06 +0100
commitc8406b71fe62860031a9be829a6e0378c6fcf1ee (patch)
tree36812f267562a64faf875edb0619fa49f77e56f1
parent1aa9cda77a29daa454d6ac05ab345044668042ee (diff)
parentd4642d918c84f18b6f17b57e619c95ea7a413d3f (diff)
downloadnextpnr-c8406b71fe62860031a9be829a6e0378c6fcf1ee.tar.gz
nextpnr-c8406b71fe62860031a9be829a6e0378c6fcf1ee.tar.bz2
nextpnr-c8406b71fe62860031a9be829a6e0378c6fcf1ee.zip
Merge pull request #1042 from yrabbit/add-z1
gowin: add support for a more common chip
-rw-r--r--gowin/pack.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gowin/pack.cc b/gowin/pack.cc
index 5260dda5..dc0b1461 100644
--- a/gowin/pack.cc
+++ b/gowin/pack.cc
@@ -1018,7 +1018,7 @@ static void pack_plls(Context *ctx)
switch (ci->type.hash()) {
case ID_rPLL: {
- if (parm_device == "GW1N-1") {
+ if (parm_device == "GW1N-1" || parm_device == "GW1NZ-1") {
// B half
std::unique_ptr<CellInfo> cell = create_generic_cell(ctx, id_RPLLB, ci->name.str(ctx) + "$rpllb");
reconnect_rpllb(ctx, ci, cell.get());