Display HDL model parameters with nondefault values
hdldispmdlparams(model)
hdldispmdlparams(model,'all')
hdldispmdlparams(
displays,
for the specified model, the names and values of HDL parameters that
have nondefault values.model
)
hdldispmdlparams(
displays the names and values of all HDL
parameters for the specified model.model
,'all'
)
|
Name of an open model. Default: None |
|
If you pass in |
The following example displays HDL properties of the current model that have nondefault values.
hdldispmdlparams(bdroot) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% HDL CodeGen Parameters (non-default) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% CodeGenerationOutput : 'GenerateHDLCodeAndDisplayGeneratedModel' HDLSubsystem : 'simplevectorsum_2atomics/Subsystem' OptimizationReport : 'on' ResetInputPort : 'rst' ResetType : 'Synchronous'
The following example displays HDL properties and values of the current model.
hdldispmdlparams(bdroot,'all') %%%%%%%%%%%%%%%%%%%%%%%%% HDL CodeGen Parameters %%%%%%%%%%%%%%%%%%%%%%%%% AddPipelineRegisters : 'off' Backannotation : 'on' BlockGenerateLabel : '_gen' CheckHDL : 'off' ClockEnableInputPort : 'clk_enable' . . . VerilogFileExtension : '.v'