mirror of
https://github.com/YosysHQ/nextpnr.git
synced 2026-02-01 22:42:51 +00:00
Use new Arch::isIOCell() function in Timing
This commit is contained in:
@@ -155,7 +155,7 @@ struct Timing
|
||||
for (auto &cell : ctx->cells) {
|
||||
input_ports.clear();
|
||||
output_ports.clear();
|
||||
bool is_io = cell.second->type == ctx->id_sb_io; // HACK HACK HACK
|
||||
bool is_io = ctx->isIOCell(cell.second.get());
|
||||
for (auto& port : cell.second->ports) {
|
||||
if (!port.second.net) continue;
|
||||
if (port.second.type == PORT_OUT)
|
||||
|
||||
Reference in New Issue
Block a user