set_input_transition -clock_fall warning
Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
parent
17d721f944
commit
feac4b5d18
|
|
@ -2448,8 +2448,8 @@ define_cmd_args "set_input_transition" \
|
||||||
{[-rise] [-fall] [-min] [-max] transition ports}
|
{[-rise] [-fall] [-min] [-max] transition ports}
|
||||||
|
|
||||||
proc set_input_transition { args } {
|
proc set_input_transition { args } {
|
||||||
parse_key_args "set_input_transition" args keys {-clock -clock_fall} \
|
parse_key_args "set_input_transition" args keys {-clock} \
|
||||||
flags {-rise -fall -max -min}
|
flags {-rise -fall -max -min -clock_fall}
|
||||||
|
|
||||||
set tr [parse_rise_fall_flags flags]
|
set tr [parse_rise_fall_flags flags]
|
||||||
set min_max [parse_min_max_all_flags flags]
|
set min_max [parse_min_max_all_flags flags]
|
||||||
|
|
@ -2465,7 +2465,7 @@ proc set_input_transition { args } {
|
||||||
if [info exists keys(-clock)] {
|
if [info exists keys(-clock)] {
|
||||||
sta_warn 361 "-clock not supported."
|
sta_warn 361 "-clock not supported."
|
||||||
}
|
}
|
||||||
if [info exists keys(-clock_fall)] {
|
if [info exists flags(-clock_fall)] {
|
||||||
sta_warn 362 "-clock_fall not supported."
|
sta_warn 362 "-clock_fall not supported."
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue