blob: 5092254f5d0a78454a06d8fd16f9a82094119f1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
entity test is
end entity test;
entity internal is
end entity internal;
architecture arch of internal is begin
end architecture arch;
architecture first of test is begin
  test_instantiation : entity work.internal;
end architecture first;
architecture second of test is begin
end architecture second;
  
  |