You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vivado/README.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ vivado_create_project(
59
59
)
60
60
```
61
61
62
-
It has the optional argument `_create_project_tcl_template` which by default loads [create_project.tcl.template](create_project.tcl.template). This can be modified.
62
+
It has the optional argument `create_project_tcl_template` which by default loads [create_project.tcl.template](create_project.tcl.template). This can be modified.
63
63
64
64
## synthesize
65
65
@@ -76,7 +76,7 @@ vivado_synthesize(
76
76
)
77
77
```
78
78
79
-
It has the optional argument `_create_project_tcl_template` which by default loads [create_project.tcl.template](create_project.tcl.template). This can be modified.
79
+
It has the optional argument `create_project_tcl_template` which by default loads [create_project.tcl.template](create_project.tcl.template). This can be modified.
80
80
81
81
There is another optional argument `synth_strategy` which defaults to `Vivado Synthesis Defaults`. Look at synthesis strategies in vivado to see different options.
82
82
@@ -93,7 +93,7 @@ vivado_synthesis_optimize(
93
93
)
94
94
```
95
95
96
-
It has the optional argument `_synth_optimize_tcl_template` which by default loads [synth_optimize.tcl.template](synth_optimize.tcl.template). This can be modified.
96
+
It has the optional argument `synth_optimize_tcl_template` which by default loads [synth_optimize.tcl.template](synth_optimize.tcl.template). This can be modified.
97
97
98
98
There is an optional argument `opt_directive` which defaults to `Explore`.
99
99
@@ -110,7 +110,7 @@ vivado_placement(
110
110
)
111
111
```
112
112
113
-
It has the optional argument `_placement_tcl_template` which by default loads [placement.tcl.template](placement.tcl.template). This can be modified.
113
+
It has the optional argument `placement_tcl_template` which by default loads [placement.tcl.template](placement.tcl.template). This can be modified.
114
114
115
115
## place_optimize
116
116
@@ -125,7 +125,7 @@ vivado_place_optimize(
125
125
)
126
126
```
127
127
128
-
It has the optional argument `_place_optimize_tcl_template` which by default loads [place_optimize.tcl.template](place_optimize.tcl.template). This can be modified.
128
+
It has the optional argument `place_optimize_tcl_template` which by default loads [place_optimize.tcl.template](place_optimize.tcl.template). This can be modified.
129
129
130
130
## routing
131
131
@@ -140,7 +140,7 @@ vivado_routing(
140
140
)
141
141
```
142
142
143
-
It has the optional argument `_route_tcl_template` which by default loads [route.tcl.template](route.tcl.template). This can be modified.
143
+
It has the optional argument `route_tcl_template` which by default loads [route.tcl.template](route.tcl.template). This can be modified.
144
144
145
145
There is an optional argument `route_directive` which defaults to `Explore`.
146
146
@@ -157,7 +157,7 @@ vivado_write_bitstream(
157
157
)
158
158
```
159
159
160
-
It has the optional argument `_write_bitstream_tcl_template` which by default loads [write_bitstream.tcl.template](write_bitstream.tcl.template). This can be modified.
160
+
It has the optional argument `write_bitstream_tcl_template` which by default loads [write_bitstream.tcl.template](write_bitstream.tcl.template). This can be modified.
161
161
162
162
## xsim_test
163
163
@@ -176,7 +176,7 @@ xsim_test(
176
176
)
177
177
```
178
178
179
-
It has the optional argument `_xsim_test_template` which by default loads [_xsim_test_template.tcl.template](_xsim_test_template.tcl.template). This can be modified.
179
+
It has the optional argument `xsim_test_template` which by default loads [xsim_test_template.tcl.template](xsim_test_template.tcl.template). This can be modified.
180
180
181
181
It is tagged as `manual` so it is not run by CI tools. They do not have vivado installed.
0 commit comments