ClockProcessPostfix

Specify postfix to append to HDL clock process names

Settings

'postfix'

Default: '_process'.

Specify the postfix as a character vector. HDL Coder™ appends the postfix to HDL clock process names. HDL Coder uses process blocks for register operations. The label for each of these blocks is derived from a register name and the postfix _process. For example, the coder derives the label delay_pipeline_process in the following block declaration from the register name delay_pipeline and the default postfix _process:

delay_pipeline_process : PROCESS (clk, reset)
BEGIN
  .
  .
  .

Set or View This Property

To set this property, use hdlset_param or makehdl. To view the property value, use hdlget_param.

Was this topic helpful?