From 447b3a060c791b926e954e8e36e63aba718fbeb6 Mon Sep 17 00:00:00 2001 From: "William D. Jones" Date: Fri, 29 Jan 2021 15:46:42 -0500 Subject: [PATCH] machxo2: Fix getWireName. --- machxo2/arch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); }