Skip to content

Commit

Permalink
Replaced path to scl lib with $::env(LIB_SYNTH)
Browse files Browse the repository at this point in the history
  • Loading branch information
RameenAnwar committed Sep 12, 2022
1 parent 15fa6ef commit 42fe573
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/tcl_commands/dft.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ proc run_dft {args} {
if { $::env(DFT_ENABLE) } {
fault_chain \
-verilog $::env(synthesis_results)/$::env(DESIGN_NAME).v \
-liberty $::env(PDK_ROOT)/sky130A/libs.ref/sky130_fd_sc_hd/lib/sky130_fd_sc_hd__tt_100C_1v80.lib \
-liberty $::env(LIB_SYNTH) \
-clock $::env(CLOCK_PORT) \
-reset $::env(RESET_PORT) \
-output $::env(synthesis_results)/$::env(DESIGN_NAME).v
Expand All @@ -24,7 +24,7 @@ proc run_dft {args} {

fault_tap \
-verilog $::env(synthesis_results)/$::env(DESIGN_NAME).v \
-liberty $::env(PDK_ROOT)/sky130A/libs.ref/sky130_fd_sc_hd/lib/sky130_fd_sc_hd__tt_100C_1v80.lib \
-liberty $::env(LIB_SYNTH) \
-clock $::env(CLOCK_PORT) \
-reset $::env(RESET_PORT) \
-output $::env(synthesis_results)/$::env(DESIGN_NAME).v
Expand Down

0 comments on commit 42fe573

Please sign in to comment.