diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-08-27 13:56:32 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-08-27 13:56:32 +0200 |
commit | cb66dc7ee55c7138ccc7d1a4ed9f885d72a8a53d (patch) | |
tree | 27e89ccd0ba51cab2cfb8a690c3a607216ee9530 /testsuite/synth/issue40/testcase.vhdl | |
parent | 4870e051898d752407da802d4297d1f83bfbe433 (diff) | |
download | ghdl-cb66dc7ee55c7138ccc7d1a4ed9f885d72a8a53d.tar.gz ghdl-cb66dc7ee55c7138ccc7d1a4ed9f885d72a8a53d.tar.bz2 ghdl-cb66dc7ee55c7138ccc7d1a4ed9f885d72a8a53d.zip |
testsuite/synth: testcase for conditional signal assignment.
Diffstat (limited to 'testsuite/synth/issue40/testcase.vhdl')
-rw-r--r-- | testsuite/synth/issue40/testcase.vhdl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testsuite/synth/issue40/testcase.vhdl b/testsuite/synth/issue40/testcase.vhdl new file mode 100644 index 000000000..8055fac85 --- /dev/null +++ b/testsuite/synth/issue40/testcase.vhdl @@ -0,0 +1,17 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity testcase is + port( + data_in : in std_ulogic; + data_out : out std_ulogic + ); +end entity testcase; + +architecture behaviour of testcase is +begin + comb : process(all) + begin + data_out <= '1' when data_in = '0' else '0'; + end process; +end architecture behaviour; |