...
Code Block |
---|
M=param_set_table_v2_module(NAME, DATATYPE, NUMDIM, NUMROWS, NUMCOLS, MODVAR)
Param table set module. This module can reach into the instance structure
of other modules and set array values.
Arguments:
NAME - name of the module.
DATATYPE - string specifying the data type of the variable and this
is also used for the data type of the input pin. Allowable
values are'int'.
NUMDIM - number of table dimensions
NUMROWS - size of one (1-d) table
NUMCOLS - number of presets
MODVAR - specifies the module and variable name using the form:
'MOD.VAR' where MOD is the module name and VAR is the
variable name. You can also specify internal subsystems using
'SUBSYS.MOD.VAR'.
EXECUTIONORDER - Determines when the ParamSet module executes relative
to the module it is controlling. Allowable values are:
'undefined' - the default. The execution order is set
by the routing algorithm and can occur before
or after the module it is controlling.
'before' - forces ParamSet to execute before the module it
is controlling.
'after' - forces ParamSet to execute after the module it
is controlling.
When using 'before' and 'after' you could get a build error
indicating that no more modules can execute or there is a
circular dependency. |