diff options
Diffstat (limited to 'machxo2')
-rw-r--r-- | machxo2/arch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/machxo2/arch.h b/machxo2/arch.h index aa4138f2..a438424f 100644 --- a/machxo2/arch.h +++ b/machxo2/arch.h @@ -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()); } |