diff options
Diffstat (limited to 'testsuite/gna/issue1875/test.vhdl')
-rw-r--r-- | testsuite/gna/issue1875/test.vhdl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/testsuite/gna/issue1875/test.vhdl b/testsuite/gna/issue1875/test.vhdl new file mode 100644 index 000000000..e1540e551 --- /dev/null +++ b/testsuite/gna/issue1875/test.vhdl @@ -0,0 +1,19 @@ +library IEEE; +use IEEE.std_logic_1164.all; +use IEEE.VITAL_timing.all; +use IEEE.VITAL_primitives.all; + +entity test is + port ( + CLK : in std_logic_vector(1 downto 0) + ); + attribute VITAL_LEVEL0 of test : entity is TRUE; +end test; + +architecture VITAL_ACT of test is +begin + process + begin + wait; + end process; +end architecture; |