Revert "Do not add "$iob" suffix"

This reverts commit 10d6db6d94.
This commit is contained in:
Eddie Hung 2018-12-27 21:39:41 -08:00
parent ab35983000
commit cbc01f0f71

View File

@ -256,7 +256,7 @@ static void pack_io(Context *ctx)
} }
} else { } else {
// Create a IOBUF buffer // Create a IOBUF buffer
std::unique_ptr<CellInfo> xc7_cell = create_xc7_cell(ctx, ctx->id("IOBUF"), ci->name.str(ctx)); std::unique_ptr<CellInfo> xc7_cell = create_xc7_cell(ctx, ctx->id("IOBUF"), ci->name.str(ctx) + "$iob");
nxio_to_sb(ctx, ci, xc7_cell.get()); nxio_to_sb(ctx, ci, xc7_cell.get());
new_cells.push_back(std::move(xc7_cell)); new_cells.push_back(std::move(xc7_cell));
sb = new_cells.back().get(); sb = new_cells.back().get();