support / src_en /api.read_svf.txt
gofeco's picture
Upload 100 files
fe683c0 verified
raw
history blame
803 Bytes
<h3 id='___read_svf'>read_svf</h3>
<pre>Read Synopsys SVF text files (LLM: svf)
<b>Usage:</b> my $status = read_svf(@options, @files);
@files: SVF text files
@options:
-imp: The SVF file is for the Implementation netlist
-ref: The SVF file is for the Reference Netlist
-Top_1: The SVF file is for Top_1 tree database
-Top_2: The SVF file is for Top_2 tree database
$status: If zero, the files have been read in successfully
if non-zero, failed to read in the files
<b>Note:</b> This command must be run before read_design
SVF should be in text format
<b>Examples:</b>
#1. Read in both SVF files for IMP/REF
read_svf("-ref", "ref_design.svf.txt");
read_svf("-imp", "imp_design.svf.txt");
read_design("-ref", "ref_design.v");
read_design("-imp", "imp_design.v");
</pre>