From 46010f33ad1ffa1d1b7f6ec053fcb9c3596e514a Mon Sep 17 00:00:00 2001 From: David Shah Date: Wed, 15 Jan 2020 12:59:20 +0000 Subject: nexus: Globals and naming fixes Signed-off-by: David Shah --- nexus/arch.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nexus/arch.h b/nexus/arch.h index f0f51271..f787c2b3 100644 --- a/nexus/arch.h +++ b/nexus/arch.h @@ -213,7 +213,7 @@ NPNR_PACKED_STRUCT(struct GlobalHrowInfoPOD { uint16_t hrow_col; uint16_t padding; uint32_t num_spine_cols; - RelPtr spine_cols; + RelPtr spine_cols; }); NPNR_PACKED_STRUCT(struct GlobalInfoPOD { @@ -799,7 +799,7 @@ struct Arch : BaseCtx { std::string name = "X"; name += std::to_string(bel.tile % chip_info->width); - name += "Y"; + name += "/Y"; name += std::to_string(bel.tile / chip_info->width); name += "/"; name += nameOf(IdString(bel_data(bel).name)); @@ -910,7 +910,7 @@ struct Arch : BaseCtx { std::string name = "X"; name += std::to_string(wire.tile % chip_info->width); - name += "Y"; + name += "/Y"; name += std::to_string(wire.tile / chip_info->width); name += "/"; name += nameOf(IdString(wire_data(wire).name)); -- cgit v1.2.3