diff options
author | David Shah <dave@ds0.me> | 2018-11-26 15:35:55 +0000 |
---|---|---|
committer | David Shah <dave@ds0.me> | 2018-11-26 15:35:55 +0000 |
commit | 5a1190ade259259fa31cf6a9f35ec3794bbaeb08 (patch) | |
tree | f98d64468cec326efaccf181d19d841d697dd10a | |
parent | 024db62ef0525cc4458e9af122840d88b6f09865 (diff) | |
download | nextpnr-5a1190ade259259fa31cf6a9f35ec3794bbaeb08.tar.gz nextpnr-5a1190ade259259fa31cf6a9f35ec3794bbaeb08.tar.bz2 nextpnr-5a1190ade259259fa31cf6a9f35ec3794bbaeb08.zip |
ecp5: Fix UR PLL tile coordinates
Signed-off-by: David Shah <dave@ds0.me>
-rw-r--r-- | ecp5/bitstream.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ecp5/bitstream.cc b/ecp5/bitstream.cc index 4de2a0a6..df16946d 100644 --- a/ecp5/bitstream.cc +++ b/ecp5/bitstream.cc @@ -407,8 +407,8 @@ std::vector<std::string> get_pll_tiles(Context *ctx, BelId bel) tiles.push_back(ctx->getTileByTypeAndLocation(loc.y + 1, loc.x, "PLL0_LR")); tiles.push_back(ctx->getTileByTypeAndLocation(loc.y + 1, loc.x - 1, pll1_lr)); } else if (name == "EHXPLL_UR") { - tiles.push_back(ctx->getTileByTypeAndLocation(loc.y, loc.x - 1, "PLL0_UR")); - tiles.push_back(ctx->getTileByTypeAndLocation(loc.y + 1, loc.x - 1, "PLL1_UR")); + tiles.push_back(ctx->getTileByTypeAndLocation(loc.y, loc.x + 1, "PLL0_UR")); + tiles.push_back(ctx->getTileByTypeAndLocation(loc.y + 1, loc.x + 1, "PLL1_UR")); } else { NPNR_ASSERT_FALSE_STR("bad PLL loc " + name); } |