Check for HDL keywords in design names
Check for HDL keywords in design names
Since R2020b
Model Configuration Pane: Global Settings / Coding standards
Description
Specify whether to check for HDL keywords in design names. This check corresponds to CGSL-1.A.A.3 of the Industry standard guidelines.
Dependencies
To clear the Check for HDL keywords in design names check box, set the HDL coding standard parameter to Industry
.
Settings
on
(default) | off
Default: On
on
Check for HDL keywords in design names.
off
Do not check for HDL keywords in design names.
Tips
To set this property:
Create an HDL coding standard customization object.
cso = hdlcoder.CodingStandard('Industry');
Set the
HDLKeywords
property of the HDL coding standard customization object.For example, to disable the check for HDL keywords in design names, enter:
cso.HDLKeywords.enable = false;
Set the
HDLCodingStandardCustomizations
property to the HDL coding standard customization object, specify the coding standard, and generate code.For example, if your DUT is
sfir_fixed/symmetric_fir
, enter:makehdl('sfir_fixed/symmetric_fir', 'HDLCodingStandard','Industry', ... 'HDLCodingStandardCustomizations',cso);
Recommended Settings
No recommended settings.
Programmatic Use
Parameter:
HDLKeywords property of
hdlcoder.CodingStandard object |
Type: character vector |
Values: 'on' | 'off' |
Default: 'on' |
Version History
Introduced in R2020b