diff options
author | William D. Jones <thor0505@comcast.net> | 2021-01-29 15:46:42 -0500 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2021-02-12 10:36:59 +0000 |
commit | 447b3a060c791b926e954e8e36e63aba718fbeb6 (patch) | |
tree | 0c30d1145782be49a73223413984f112969cbe96 | |
parent | 385917059b2d06e3b96140418c966a9099ef1e09 (diff) | |
download | nextpnr-447b3a060c791b926e954e8e36e63aba718fbeb6.tar.gz nextpnr-447b3a060c791b926e954e8e36e63aba718fbeb6.tar.bz2 nextpnr-447b3a060c791b926e954e8e36e63aba718fbeb6.zip |
machxo2: Fix getWireName.
-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()); } |