File tree Expand file tree Collapse file tree 2 files changed +20
-4
lines changed
flow/designs/rapidus2hp/hercules_is_int Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ export PLATFORM = rapidus2hp
33export DESIGN_NAME = hercules_is_int
44
55export SRC_HOME = /platforms/Rapidus/designs/hercules_is_int
6+
7+ ifeq ($(FLOW_VARIANT ) , gatelevel)
8+ export SYNTH_NETLIST_FILES = $(SRC_HOME ) /ca78_8t_postroute_0707.v
9+ endif
10+
611export VERILOG_FILES = $(sort $(wildcard $(SRC_HOME ) /hercules_issue/verilog/* .sv) ) \
712 $(sort $(wildcard $(SRC_HOME ) /shared/verilog/* .sv) ) \
813 $(sort $(wildcard $(SRC_HOME ) /models/cells/generic/* .sv) )
@@ -11,10 +16,7 @@ export VERILOG_INCLUDE_DIRS = $(SRC_HOME)/hercules_issue/verilog \
1116 $(SRC_HOME ) /shared/verilog \
1217 $(SRC_HOME ) /models/cells/generic
1318
14- export VERILOG_DEFINES +=
15-
16- export ADDITIONAL_LEFS =
17- export ADDITIONAL_LIBS +=
19+ export VERILOG_DEFINES +=
1820
1921export SDC_FILE = $(DESIGN_HOME ) /$(PLATFORM ) /$(DESIGN_NAME ) /prects.sdc
2022
Original file line number Diff line number Diff line change 1+ # set sdc_version 2.1
2+ set sdc_version 1.4
3+ current_design hercules_is_int
4+
5+ set clk_period 250
6+
7+ set_max_fanout 32 [current_design]
8+ set_load 10 [all_outputs]
9+ set_max_capacitance 10 [all_inputs]
10+
11+ create_clock -name " clk" -add -period $clk_period \
12+ -waveform [list 0.0 [expr { 0.5 * $clk_period }]] [get_ports clk]
13+
14+ set_propagated_clock [all_clocks]
You can’t perform that action at this time.
0 commit comments