Intel® Quartus® Prime Pro Edition User Guide: Scripting

ID 683432
Date 9/26/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

4.1.35.41. 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

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 will run 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