gtech_fast.scr
来自「design compile synthesis user guide」· SCR 代码 · 共 40 行
SCR
40 行
/*************************************************************//* Script to create the GTECH view of the design which is *//* compatible with RTL Analyzer *//* *//* 1 command has been added to the original dc_shell script *//* to support the use of RTL Analyzer *//*************************************************************/echo "Running Source to GTECH phase of design";/* creating a variable to be used for analyzing *//* the design and writing out reports */toplevel = "top";/* Define variable for source files */verilog_files = { addr_combo_fast.v \ addr_fsm.v \ top.v \ };/* analyze all of the blocks in this design */analyze -f verilog verilog_files;/* elaborate the circuit (hierarchical elaborate) */elaborate toplevel;link;current_design = toplevel;/* include the script to apply constraints to the design */include constraints.scr;check_design > report_dir + toplevel + "_fast_gtech_chk.rpt"; /* RTL Analyzer specific *//* Write out GTECH database and RTL Analyzer Project file, */ /* start RTL Analyzer GUI and load GTECH design */rtl_analyzer -output unmapped_dir + toplevel + "_fast_gtech.db" \ -project proj_dir + toplevel + "_fast_gtech.proj";
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?