mirror of https://github.com/YosysHQ/nextpnr.git
machxo2: Fix getWireName.
This commit is contained in:
parent
385917059b
commit
447b3a060c
|
|
@ -626,7 +626,7 @@ struct Arch : BaseCtx
|
|||
{
|
||||
NPNR_ASSERT(wire != WireId());
|
||||
std::stringstream name;
|
||||
name << "X" << wire.location.x << "/Y" << wire.location.y << "/" << tileInfo(wire)->bel_data[wire.index].name.get();
|
||||
name << "X" << wire.location.x << "/Y" << wire.location.y << "/" << tileInfo(wire)->wire_data[wire.index].name.get();
|
||||
return id(name.str());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue