📄 defaults.con
字号:
/* Define system clock period*/clk_period = 20/* Create real clock if clock port is found */if (find(port, clk) == {"clk"}) { clk_name = clk create_clock -period clk_period clk}/* Create virtual clock if clock port is not found */if (find(port, clk) == {}) { clk_name = vclk create_clock -period clk_period -name vclk}/* Apply default drive strengths and typical loadsfor I/O ports */set_load 1.5 all_outputs()set_driving_cell -cell IV all_inputs()/* If real clock, set infinite drive strength */if (find(port, clk) == {"clk"}) { set_drive 0 clk}/* Apply default timing constraints for modules */set_input_delay 1.2 all_inputs() -clock clk_nameset_output_delay 1.5 all_outputs() -clock clk_nameset_clock_skew -minus_uncertainty 0.45 clk_name/* Set operating conditions */set_operating_conditions WCCOM /* Turn on Auto Wireload selection Library must support this feature */auto_wire_load_selection = true
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -