File size: 514 Bytes
fe683c0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<h3 id='___read_rtlpatch'>read_rtlpatch</h3> <pre>Read RTL Patch file <b>Usage:</b> my $status = read_rtlpatch($file, @options); $file: RTL file for ECO $status: If zero, the file is read in successfully if one, failed in reading the file <b>Examples:</b> #1. Read in RTL Patch verilog file my $status = read_rtlpatch("rtlpatch_change.v"); #2. Multiple RTL Patch files are read in one by one my $status1 = read_rtlpatch("rtlpatch_change1.v"); my $status2 = read_rtlpatch("rtlpatch_change2.v"); </pre> |