blob: 2b97782f60e7735dca738cfe3242868fbdfbe280 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
entity bar is
end entity bar;
entity \foo\ is
port (test : in bit);
end entity \foo\;
architecture structural of \foo\ is
begin -- architecture structural
end architecture structural;
architecture structural of bar is
signal test : bit;
begin -- architecture structural
foo_1: entity work.\foo\
port map (test => test);
end architecture structural;
|