schInstallHDL
schInstallHDL(g_library t_cellName t_viewName t_srcName[g_createSymbol] [g_overrideIfExist] ) => t / nil
Description
Installs a Verilog HDL source file as an HDL cellview and creates the cell, view, and cellview objects in the library if necessary. This function can also create a matching symbol cellview.
Arguments
Value Returned
|
Installed a Verilog HDL source file as an HDL cellview and created the cell, view, and cellview objects in the library if necessary. |
|
Examples
Creates the HDL cellview myDesign functional in the library myLib.
lib = ddGetObj( "myLib" )
schInstallHDL( lib "myDesign" "functional" "myDesign.v" )
In addition to creating the HDL cellview myDesign functional in the library myLib, it creates a matching myDesign symbol cellview and overwrites the symbol if it already exists.
schInstallHDL( lib "myDesign" "functional" "myDesign.v" t t)
Return to top