tcLoadTechFile
tcLoadTechFile(d_techIDt_sourceFile[t_mode[l_sections] ] ) => t / nil
Description
Compiles the ASCII source file, opens the technology database in a (append) mode, and updates it with the compiled data. The default action is to merge the newly compiled data with the technology database already loaded into virtual memory. If you set t_mode to w, the system deletes the data in virtual memory and loads the newly compiled data. If you specify the sections to compile, this function compiles only the specified sections and preserves the data in the other sections.
If you opened the technology database in read mode, this function upgrades the mode to append or write. If you opened the technology database in append or write mode and then ran tcLoadTechFile with the default merge action, this function merges the newly compiled data with the data, if any, currently in virtual memory.
Arguments
Value Returned
Example
tcLoadTechFile(techGetTechFile( techID ) "my_source")
Compiles the my_source ASCII file. Merges the technology data into the virtual memory used by the technology database for the database identified by techID.
Return to top