aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/pack.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-09-25 18:21:56 +0200
committerGitHub <noreply@github.com>2018-09-25 18:21:56 +0200
commit07cf349ee46a8c8a3163d2f8a146beab02e6b487 (patch)
treea43f9f922d2af2ecb5ab59c1981acf5b2ab47405 /ice40/pack.cc
parent1eb7411fb0b814c524b83dc3c16715a814db8f5d (diff)
parentdea87e46c4f316a950425504cadda56aaeeab280 (diff)
downloadnextpnr-07cf349ee46a8c8a3163d2f8a146beab02e6b487.tar.gz
nextpnr-07cf349ee46a8c8a3163d2f8a146beab02e6b487.tar.bz2
nextpnr-07cf349ee46a8c8a3163d2f8a146beab02e6b487.zip
Merge pull request #79 from YosysHQ/ice40lvds
ice40: Adding LVDS input support
Diffstat (limited to 'ice40/pack.cc')
-rw-r--r--ice40/pack.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ice40/pack.cc b/ice40/pack.cc
index 01cb3855..07c003d1 100644
--- a/ice40/pack.cc
+++ b/ice40/pack.cc
@@ -424,7 +424,7 @@ static void pack_io(Context *ctx)
// Create a SB_IO buffer
std::unique_ptr<CellInfo> ice_cell =
create_ice_cell(ctx, ctx->id("SB_IO"), ci->name.str(ctx) + "$sb_io");
- nxio_to_sb(ctx, ci, ice_cell.get());
+ nxio_to_sb(ctx, ci, ice_cell.get(), packed_cells);
new_cells.push_back(std::move(ice_cell));
sb = new_cells.back().get();
}