pcUserPreProcessCellView
pcUserPreProcessCellView(d_cv t_tag p_port) =>t / nil
Description
A user-defined procedure called by the compiler before it processes any objects in a Pcell. The procedure is normally used to generate code to initialize variables before the compiler processes individual objects.
Arguments
|
Name that can be used to refer to the Pcell in the SKILL code output by the procedure. |
|
Value Returned
Examples
procedure(pcUserPreProcessCellView( cv tag port ) ; Initialize list to store the contacts
fprintf(port "PCUserContacts = nil\n")
)
Generates a call to a SKILL procedure to initialize a list of database objects.
Return to top