热度 11| ||
需要以下三个文件:
leda.tcl
project_new leda_test.pro
project_specify_options -format verilog -severity warning -macro GTECH -version 01
read_verilog -f rtl_list
current_design digital_top
elaborate
checker_set_design_constraints -top digital_top
run
gui_start
rtl_list
+define+DW32BIT
./../DIG/rtl_v2/top/digital_top.v
run_leda
leda \
-maxmessages 1000 \
-maxviolations 10000 \
+tcl_file leda.tcl \
| tee leda.log
使用的时候只需把rtl_list换成自己的flist,然后把leda_tcl中的顶层(digital_top)换成自己的顶层,然后再source run_leda这个文件就可以了~