URL
https://opencores.org/ocsvn/s1_core/s1_core/trunk
Subversion Repositories s1_core
[/] [s1_core/] [trunk/] [tools/] [src/] [build_dc.cmd] - Rev 83
Go to most recent revision | Compare with Previous | Blame | View Log
# The Tcl script under $S1_ROOT/tools/src/build_dc.cmd is attached at the end of the filelist for DC;# if you modify this file *REMEMBER* to run 'update_filelist' or you'll run the old version!!!# Technology-independent elaboration and linkingset active_design s1_topelaborate $active_designcurrent_design $active_designlinkuniquifycheck_design# Constraints and mapping on target librarycreate_clock -period 5.0 -waveform [list 0 2.5] sys_clock_iset_input_delay 2.0 -clock sys_clock_i -max [all_inputs]set_output_delay 2.0 -clock sys_clock_i -max [all_outputs]set_dont_touch_network [list sys_clock_i sys_reset_i]set_drive 0 [list sys_clock_i sys_reset_i]set_wire_load_mode enclosedset_max_area 0set_fix_multiple_port_nets -buffer_constants -allcompile# Export the mapped designremove_unconnected_ports [find -hierarchy cell {"*"}]write -format ddc -hierarchy -output $active_design.ddcwrite -format verilog -hierarchy -output $active_design.sv# Report area and timingreport_area -hierarchy > report_area.rptreport_timing > report_timing.rptreport_constraint -all_violators > report_constraint.rptquit
Go to most recent revision | Compare with Previous | Blame | View Log
