Hi Corion..
The code is working fine, but not does my intention function...i modified the code for my need based on your comments as followed...
use strict;
use warnings;
open (IN1, "<design_modify1.vhd") or die;
open (OUT, ">output_file.vhd") or die;
open (IN2, "<nets.txt") or die;
open (IN3, "<enabled_nets.txt") or die;
my @nets = <IN2>;
my @enabled_nets = <IN3>;
chomp @nets;
chomp @enabled_nets;
while (<IN1>) {
print OUT;
foreach my $i (0..$#nets){
print OUT if (s/\=\>\s+$nets[$i]\,/\=\> $enabled_nets[$i]\,/);
#}
}
close (IN1);
close (OUT);
close (IN2);
close (IN3);
I want the output file as follows.. (shown only the modifiable lines)
VCC_i : VCC port map(Y => \VCC\);
sum_1_SUM0_0 : XOR3 port map(A => b_e, B => a_e, C => c_e, Y => su
+m_c);
carry_pad : OUTBUF port map(D => N_5, PAD => carry);
a_pad : INBUF port map(PAD => a, Y => a_c);
but it is printing as follows.. I understood the mistake in the code that since i wrote the print statement inside for loop, it gets only one element of array at a time.. So, do you have any suggestions for this???
VCC_i : VCC port map(Y => \VCC\);
sum_1_SUM0_0 : XOR3 port map(A => b_c, B => a_c, C => c_c, Y => su
+m_c);
sum_1_SUM0_0 : XOR3 port map(A => b_c, B => a_e, C => c_c, Y => su
+m_c);
sum_1_SUM0_0 : XOR3 port map(A => b_e, B => a_e, C => c_c, Y => su
+m_c);
sum_1_SUM0_0 : XOR3 port map(A => b_e, B => a_e, C => c_e, Y => su
+m_c);
carry_pad : OUTBUF port map(D => N_5, PAD => carry);
a_pad : INBUF port map(PAD => a, Y => a_c);
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.