aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/pack.cc
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-09-24 15:25:37 +0100
committerDavid Shah <davey1576@gmail.com>2018-09-24 15:25:37 +0100
commit2ee86ab5a80fdc2c49c6c6e34a2c0d31ae291c63 (patch)
tree6dae031af8587633a1c7715b6e116ea3e9157fa9 /ice40/pack.cc
parentd5d9fb27a66604c89b7a2746e7ca9749b62aec91 (diff)
downloadnextpnr-2ee86ab5a80fdc2c49c6c6e34a2c0d31ae291c63.tar.gz
nextpnr-2ee86ab5a80fdc2c49c6c6e34a2c0d31ae291c63.tar.bz2
nextpnr-2ee86ab5a80fdc2c49c6c6e34a2c0d31ae291c63.zip
ice40: Tristate IO support fixes
Signed-off-by: David Shah <davey1576@gmail.com>
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 7c853e0e..feca8a77 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();
}