a_proc ;
|
The procedure
a_proc
is called;
it does not have any transfer parameters.
|
my_proc( sig_1, sig_2, var_3 ) ;
|
The procedure
my_proc
is called with the transfer
parameters
sig_1
,
sig_2
,
var_3
.
|
another_proc( var_1, var_2, q => const_3 ) ;
|
The procedure
my_proc
is called with the transfer
parameters
var_1
,
var_2
,
q
.
|
register_proc( ck => clock,
d => reg_in,
q => reg_out ) ;
|
The procedure
my_proc
is called with the transfer
parameters
ck, d, q,
which are explicitly assigned
by names.
|