register_delete_timing_netlist_callback (::quartus::sta)
The following table displays information for the register_delete_timing_netlist_callback Tcl command:
| Tcl Package and Version |
Belongs to ::quartus::sta 1.0 |
|||
| Syntax | register_delete_timing_netlist_callback [-h | -help] [-long_help] <body> | |||
| Arguments | -h | -help | Short help | ||
| -long_help | Long help with examples and possible return values | |||
| <body> | Body of the callback to run | |||
| Description |
Use this command to specify a TCL procedure that runs before the
timing netlist is deleted.
This command can be used to specify a procedure to run, like so:
proc mycallback {
# This is the body of the delete_timing_netlist callback.
...
}
register_delete_timing_netlist_callback mycallback
Or, you may specify the procedure directly:
register_delete_timing_netlist_callback {
# This is the body of the delete_timing_netlist callback.
...
}
|
|||
| Example Usage |
This command currently contains no example usage. |
|||
| Return Value | Code Name | Code | String Return | |
| TCL_OK | 0 | INFO: Operation successful | ||