mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-30 02:32:53 +08:00
c8af4a257b
-empty scripts compiles..good start -this is starting to feel solid
72 lines
1.4 KiB
Tcl
72 lines
1.4 KiB
Tcl
#SET PATH
|
|
#set LOCALPATH [file dirname [ info script ]]
|
|
set LOCALPATH "."
|
|
################################
|
|
# SETUP PROCESS
|
|
################################
|
|
|
|
source $LOCALPATH/setup_process.tcl
|
|
|
|
################################
|
|
# STEP1: SETUP TOOL
|
|
################################
|
|
|
|
source $LOCALPATH/01_setup_tool.tcl
|
|
|
|
################################
|
|
# STEP2: READ DESIGN FILES
|
|
################################
|
|
|
|
source $LOCALPATH/02_read_design.tcl
|
|
|
|
################################
|
|
# STEP3: READ CONSTRAINTS
|
|
################################
|
|
|
|
source $LOCALPATH/03_read_constraints.tcl
|
|
|
|
################################
|
|
# STEP4: SETUP CORNERS
|
|
################################
|
|
|
|
source $LOCALPATH/04_setup_corners.tcl
|
|
|
|
################################
|
|
# STEP5: READ FLROOPLAN
|
|
################################
|
|
|
|
source $LOCALPATH/05_floorplan.tcl
|
|
|
|
################################
|
|
# STEP6: CHECK DESIGN
|
|
################################
|
|
|
|
source $LOCALPATH/06_check_design.tcl
|
|
|
|
################################
|
|
# STEP7: COMPILE
|
|
################################
|
|
|
|
source $LOCALPATH/07_compile.tcl
|
|
|
|
################################
|
|
# STEP8: DFT
|
|
################################
|
|
|
|
source $LOCALPATH/08_dft.tcl
|
|
|
|
################################
|
|
# STEP9: OPTIMIZE
|
|
################################
|
|
|
|
source $LOCALPATH/09_optimize.tcl
|
|
|
|
################################
|
|
# STEP10: WRITE NETLIST (AND OTHER FILES)
|
|
################################
|
|
|
|
source $LOCALPATH/10_write_netlist.tcl
|
|
|
|
#exit
|
|
|