gofeco/support
0
1<h3 id='___read_rtlpatch'>read_rtlpatch</h3>2<pre>Read RTL Patch file 3<b>Usage:</b> my $status = read_rtlpatch($file, @options);4$file: RTL file for ECO 5$status: If zero, the file is read in successfully6 if one, failed in reading the file7 8<b>Examples:</b>9 10#1. Read in RTL Patch verilog file11my $status = read_rtlpatch("rtlpatch_change.v");12 13#2. Multiple RTL Patch files are read in one by one14my $status1 = read_rtlpatch("rtlpatch_change1.v");15my $status2 = read_rtlpatch("rtlpatch_change2.v");16</pre>