Altera Quartus II Scripting Instrukcja Użytkownika Strona 148

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 634
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 147
3–18 Chapter 3: Tcl Packages & Commands
advanced_timing
Quartus II Scripting Reference Manual © July 2013 Altera Corporation
get_max_delay_value
Usage
get_max_delay_value
Options
None
Description
Returns the value that designates a maximum delay.
Arguments: NONE
Example
load_package advanced_timing
project_open <design>
create_timing_netlist
create_p2p_delays
foreach_in_collection node [get_timing_nodes -type all] {
set node_name [get_timing_node_info -info name $node]
set delays_from_keeper [get_delays_from_keepers $node]
puts "node $node_name has delays from keepers:"
foreach delay $delays_from_keeper {
set src_name [get_timing_node_info -info name [lindex $delay 0]]
set longest [lindex $delay 1]
set shortest [lindex $delay 2]
if {$longest == [get_max_delay_value] || $shortest == \
[get_max_delay_value]} {
puts "Node $node_name has maximum delay values"
}
}
}
Przeglądanie stron 147
1 2 ... 143 144 145 146 147 148 149 150 151 152 153 ... 633 634

Komentarze do niniejszej Instrukcji

Brak uwag