1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-02-08 01:11:40 +00:00

show 4th tresllis_io in tile bounds

This commit is contained in:
Miodrag Milanovic
2018-11-11 08:25:54 +01:00
parent 6b197fde72
commit 0ad5197ff4

View File

@@ -456,7 +456,7 @@ std::vector<GraphicElement> Arch::getDecalGraphics(DecalId decal) const
el.x1 = bel.location.x + logic_cell_x1;
el.x2 = bel.location.x + logic_cell_x2;
el.y1 = bel.location.y + logic_cell_y1 + (2 * z) * logic_cell_pitch;
el.y2 = bel.location.y + logic_cell_y2 + (2 * z + 1) * logic_cell_pitch;
el.y2 = bel.location.y + logic_cell_y2 + (2 * z + 0.5f) * logic_cell_pitch;
ret.push_back(el);
}
}