diff options
author | H. Peter Anvin <hpa@zytor.com> | 2016-11-04 17:13:01 -0600 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2016-11-04 17:13:01 -0600 |
commit | 5a17143b6877eaaef681bc559731e0cf96073cef (patch) | |
tree | d8d6e57ed06467f0a546d67a5579b1ed2814bf7d /sync.v | |
parent | de07bf4664cc397d67cd3433a5f88b37db5bad77 (diff) | |
download | abc80-5a17143b6877eaaef681bc559731e0cf96073cef.tar.gz abc80-5a17143b6877eaaef681bc559731e0cf96073cef.tar.xz abc80-5a17143b6877eaaef681bc559731e0cf96073cef.zip |
sync.v: remove unused altera_attribute
No need to have a filter that will only used for a synchronizer at the
top level, now when synchronizer should only be used from the
synchronize wrapper module.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'sync.v')
-rw-r--r-- | sync.v | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -35,10 +35,10 @@ module synchronizer(reset, clk, enable, d, q); // bus skew (design rule D104). generate if (stabilized) - (* altera_attribute = "-name disable_da_rule D104 ; -name cut on -from * ; -name sdc_statement \"set_false_path -to [get_keepers {synchronizer:*|d_q[*] *|synchronizer:*|d_q[*]}]\"" *) + (* altera_attribute = "-name disable_da_rule D104 ; -name cut on -from * ; -name sdc_statement \"set_false_path -to [get_keepers {*|synchronizer:*|d_q[*]}]\"" *) reg [width-1:0] d_q; else - (* altera_attribute = "-name cut on -from * ; -name sdc_statement \"set_false_path -to [get_keepers {synchronizer:*|d_q[*] *|synchronizer:*|d_q[*]}]\"" *) + (* altera_attribute = "-name cut on -from * ; -name sdc_statement \"set_false_path -to [get_keepers {*|synchronizer:*|d_q[*]}]\"" *) reg [width-1:0] d_q; endgenerate |