Skip to content

Commit a896bef

Browse files
committed
floorplan: default values
Signed-off-by: Øyvind Harboe <[email protected]>
1 parent c4ec5a1 commit a896bef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flow/scripts/floorplan.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ if { [env_var_exists_and_non_empty FASTROUTE_TCL] } {
111111

112112
source_env_var_if_exists FOOTPRINT_TCL
113113

114-
if { ![env_var_equals SKIP_REPAIR_TIE_FANOUT 1] } {
114+
if { !$::env(SKIP_REPAIR_TIE_FANOUT) } {
115115
# This needs to come before any call to remove_buffers. You could have one
116116
# tie driving multiple buffers that drive multiple outputs.
117117
# Repair tie lo fanout
@@ -134,7 +134,7 @@ if { [env_var_exists_and_non_empty SWAP_ARITH_OPERATORS] } {
134134
replace_arith_modules
135135
}
136136

137-
if { [env_var_equals REMOVE_ABC_BUFFERS 1] } {
137+
if { $::env(REMOVE_ABC_BUFFERS) } {
138138
# remove buffers inserted by yosys/abc
139139
remove_buffers
140140
} else {

0 commit comments

Comments
 (0)