Avoid GNUism '\|' by using extended REs.
[geda-gaf.git] / gnetlist-legacy / tests / common / netattrib-vhdl.out
blobf36d919c4248e5ab223695c1874ffc2d238c900b
1 -- Structural VHDL generated by gnetlist
2 -- Context clause
3 library IEEE;
4 use IEEE.Std_Logic_1164.all;
5 -- Entity declaration
7 ENTITY not found IS
8 END not found;
11 -- Secondary unit
12 ARCHITECTURE netlist OF not found IS
13     COMPONENT 7400
14     END COMPONENT ;
16     COMPONENT 7404
17     END COMPONENT ;
19     COMPONENT FUSE
20     END COMPONENT ;
22     SIGNAL unnamed_net1 : Std_Logic;
23     SIGNAL netattrib : Std_Logic;
24     SIGNAL GND : Std_Logic;
25     SIGNAL Vcc : Std_Logic;
26     SIGNAL one : Std_Logic;
27 BEGIN
28 -- Architecture statement part
29     F1 : FUSE
30     PORT MAP (
31         1 => one,
32         2 => OPEN);
34     U300 : 7404
35     PORT MAP (
36         1 => one,
37         2 => unnamed_net1,
38         7 => GND,
39         14 => Vcc);
41     U200 : 7404
42     PORT MAP (
43         1 => one,
44         2 => netattrib,
45         7 => GND,
46         14 => Vcc);
48     U100 : 7400
49     PORT MAP (
50         3 => one,
51         2 => OPEN,
52         1 => OPEN,
53         14 => Vcc,
54         7 => GND,
55         5 => netattrib);
57 -- Signal assignment part
58 END netlist;