diff options
Diffstat (limited to 'testsuite/synth/issue1254/simple01.vhdl')
-rw-r--r-- | testsuite/synth/issue1254/simple01.vhdl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testsuite/synth/issue1254/simple01.vhdl b/testsuite/synth/issue1254/simple01.vhdl new file mode 100644 index 000000000..a0785240f --- /dev/null +++ b/testsuite/synth/issue1254/simple01.vhdl @@ -0,0 +1,17 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity simple01 is + port (a : in std_logic; + z : out std_logic); +end simple01; + +--use work.pkg.all; + +architecture behav of simple01 is +begin + process(A) + begin + Z <= a; + end process; +end behav; |