We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c168293 commit 1dd442dCopy full SHA for 1dd442d
himbaechel/uarch/gatemate/gfx.cc
@@ -48,6 +48,27 @@ void GateMateImpl::drawBel(std::vector<GraphicElement> &g, GraphicElement::style
48
el.y2 = el.y1 + 0.60;
49
g.push_back(el);
50
break;
51
+ case id_BUFG.index:
52
+ el.x1 = loc.x + 0.15 + loc.z * 0.20;
53
+ el.x2 = el.x1 + 0.15;
54
+ el.y1 = loc.y + 0.10;
55
+ el.y2 = el.y1 + 0.30;
56
+ g.push_back(el);
57
+ break;
58
+ case id_PLL.index:
59
+ el.x1 = loc.x + 0.15 + (loc.z - 4) * 0.20;
60
61
+ el.y1 = loc.y + 0.60;
62
63
64
65
+ case id_USR_RSTN.index:
66
+ el.x1 = loc.x + 0.20;
67
+ el.x2 = el.x1 + 0.20;
68
+ el.y1 = loc.y + 0.20;
69
+ el.y2 = el.y1 + 0.20;
70
71
72
}
73
74
0 commit comments