summaryrefslogtreecommitdiff
path: root/pb_logique_seq.ip_user_files/sim_scripts/design_1/xsim/cmd.tcl
blob: 05f1b4fc95df9cf940df13b887367f7c28e1ccfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
set curr_wave [current_wave_config]
if { [string length $curr_wave] == 0 } {
  if { [llength [get_objects]] > 0} {
    add_wave /
    set_property needs_save false [current_wave_config]
  } else {
     send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console."
  }
}

run -all
quit