absImportOasis
absImportOasis(
)
=> 0 / 1
Description
Creates cellviews from OASIS data.
Arguments
None
Value Returned
|
0
|
Indicates an error.
|
|
1
|
Indicates successful operation.
|
Options
|
ImportOasisFiles OasisFilenames
|
|
|
Specifies the OASIS files to import.
|
|
OasisImportTechRefLib libName
|
|
|
Specifies the reference technology library to be used while importing the OASIS files.
|
|
ImportOasisCaseMap { No Mapping | to Uppercase | to Lowercase }
|
|
|
Specifies the casing to be followed while mapping cell names in the OASIS files: uppercase or lowercase. Also specifies if the cell names must not be mapped.
|
|
ImportOasisTemplateFile filename
|
|
|
Specifies a file that has the .template extension to be used during import.
|
|
DefaultBin { Core | IO | Corner | Block | Ignore }
|
|
|
Specifies the bin in which the imported library cells must be placed. The default value is Core.
|
|
ImportOasisEnableColoring { true | false }
|
|
|
Specifies whether coloring must be enabled when importing the OASIS files.
|
|
ImportOasisLayerMapFile layerMapFileName
|
|
|
Specifies the layer map file to be used.
|
Examples
Imports an OASIS file named file1, maps the cell names to upper case, and moves them into the Core bin. Coloring is enabled and a layer map file is specified. The template file file1.template is imported at the same time.
absSetOption( "ImportOasisFiles" "file1" )
=> 1
absSetOption( "ImportOasisLayerMapFile" "layerMapfile1" )
=>1
absSetOption( "ImportOasisCaseMap" "to Uppercase" )
=> 1
absSetOption( "ImportOasisTemplateFile" "file1.template" )
=> 1
absSetOption( "DefaultBin" "Core" )
=> 1
absSetOption( "ImportOasisEnableColoring" "true" )
=>1
absImportOasis
=> 1
Related Topics
Importing OASIS Data in Abstract Generator
Return to top