Remove_timing_tables, Usage, Options – Altera Quartus II Scripting User Manual

Page 609: Description, Example, Remove_timing_tables –479

Advertising
background image

Chapter 3: Tcl Packages & Commands

3–479

timing

© July 2013

Altera Corporation

Quartus II Scripting Reference Manual

remove_timing_tables

Usage

remove_timing_tables

Options

None

Description

Removes all custom timing tables from the database Requires that the ::quartus::report package be loaded

Example

project_open chiptrip

# Required by creating a report panel
load_package report
load_report

# Create timing netlist for reporting.
create_timing_netlist -skip_dat

# Remove all the previous timing tables.
remove_timing_tables

# Generate Top_10_Clock_Setup timing table.
report_timing -clock_setup -table "Top_10_Clock_Setup" -npaths 10

# Save changes to database. Otherwise changes will be discarded
# when the project gets closed or the report gets unloaded.
write_report_database

unload_report
project_close

Advertising