# # browse.fst # # This script demonstrates some of the FST browsing commands. # # This script can be found in the samples/Synopsys # sub-directory of the FPGA Express installation. # # To run the script: # # fe_shell -f browse.fst # # # Browse commands that are chip-independent # set target_list [get_target FLEX*] set device_list [get_device FLEX10K EPF*] set speed_list [get_speed EPF10K100GC503 FLEX10K *] # # Step through a list # foreach one $device_list { echo $one } # # Browse commands for a chip # open_project am2910_proj/am2910_proj.exp set chip_list [get_chip *] current_chip [lindex $chip_list 1] # # Get a list of all pathgroups in the current chip # set path_list [get_pathgroup] # # check timing by pathgroup # report_timing -path_group $path_list quit