From fc1134c562241fe7ddea37a3a13b97ce9eb1bab7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Harboe?= Date: Wed, 2 Oct 2024 13:05:34 +0200 Subject: [PATCH] io_placement: spell out .tcl options to improve readability MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit the plural form tells the reader that multiple metal layers can be used Signed-off-by: Øyvind Harboe --- flow/scripts/io_placement_util.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flow/scripts/io_placement_util.tcl b/flow/scripts/io_placement_util.tcl index 0f81a8cbdb..60be7bd484 100644 --- a/flow/scripts/io_placement_util.tcl +++ b/flow/scripts/io_placement_util.tcl @@ -4,8 +4,8 @@ if {[env_var_exists_and_non_empty FLOORPLAN_DEF]} { if {[env_var_exists_and_non_empty IO_CONSTRAINTS]} { source $::env(IO_CONSTRAINTS) } - set args [list -hor_layer $::env(IO_PLACER_H) \ - -ver_layer $::env(IO_PLACER_V) \ + set args [list -hor_layers $::env(IO_PLACER_H) \ + -ver_layers $::env(IO_PLACER_V) \ {*}$::env(PLACE_PINS_ARGS)] log_cmd place_pins {*}$args }