We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9fb9fd commit 0f2eedbCopy full SHA for 0f2eedb
src/main/scala/shell/xilinx/XilinxShell.scala
@@ -29,9 +29,9 @@ class XDC(val name: String)
29
}
30
def addIOB(io: IOPin) {
31
if (io.isOutput) {
32
- addConstraint(s"set_property IOB {TRUE} [ get_cells -of_objects [ all_fanin -flat -startpoints_only ${io.sdcPin}]]")
+ addConstraint(s"set_property IOB {TRUE} [ all_fanin -flat -startpoints_only ${io.sdcPin}]")
33
} else {
34
- addConstraint(s"set_property IOB {TRUE} [ get_cells -of_objects [ all_fanout -flat -endpoints_only ${io.sdcPin}]]")
+ addConstraint(s"set_property IOB {TRUE} [ all_fanout -flat -endpoints_only ${io.sdcPin}]")
35
36
37
def addSlew(io: IOPin, speed: String) {
0 commit comments