lustrec-tests / vhdl_json / vhdl_files / 2-exportOK / ghdl / ghdl / testsuite / gna / issue424 / testCaseCrash.vhd @ 2051e520
History | View | Annotate | Download (488 Bytes)
1 | 2051e520 | Arnaud Dieumegard | library ieee; |
---|---|---|---|
2 | use ieee.std_logic_1164.all; |
||
3 | |||
4 | entity testCaseCrash is |
||
5 | port (outPad : out std_logic; |
||
6 | inPad : in std_logic |
||
7 | ); |
||
8 | end entity testCaseCrash; |
||
9 | |||
10 | architecture behavioral of testCaseCrash is |
||
11 | component subBlock is |
||
12 | port (outPort : out std_logic; |
||
13 | inPort : in std_logic |
||
14 | ); |
||
15 | end component subBlock; |
||
16 | |||
17 | begin |
||
18 | xsubBlock : subBlock |
||
19 | port map (outPort => outPad, |
||
20 | inPort => inPad |
||
21 | ); |
||
22 | |||
23 | end architecture behavioral; |