Tincr
0.0
A Tcl-based CAD Tool Framework for Xilinx's Vivado Design Suite
|
The ports
ensemble encapsulates the port
class from Vivado's Tcl data structure.
More...
Functions | |
test args | |
new name direction | |
delete port | |
rename port name | |
test_proc proc args | |
get args | |
connect_net port net | |
disconnect_net port net | |
place port package_pin | |
The ports
ensemble encapsulates the port
class from Vivado's Tcl data structure.
tincr::ports::connect_net | port net | ||
Connect a port to a net.
port | The port object. |
net | The net object. |
tincr::ports::delete | port | ||
Delete a port.
name | The name of the port to delete. |
tincr::ports::disconnect_net | port net | ||
Disconnect a port from a net.
port | The port object. |
net | The net object. |
tincr::ports::new | name direction | ||
Create a new port.
name | The name of the new port. |
direction | The direction of the new port. Valid values are IN, OUT, and INOUT. $return The newly created port object. |
tincr::ports::place | port package_pin | ||
Place a port on a package pin.
port | The port object. |
package_pin | The package_pin object. |
tincr::ports::rename | port name | ||
Rename a port.
port | The port to rename. |
name | The new name. |
tincr::ports::test | args | ||
Executes all unit tests for every proc in the ports
ensemble.
args | The configuration arguments that will be passed to the tcltest unit testing suite. |
tincr::ports::test_proc | proc args | ||
Executes all unit tests for a particular proc in the ports
ensemble.
proc | The proc to run the unit tests for. |
args | The configuration arguments that will be passed to the tcltest unit testing suite. |