diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-07-10 18:57:30 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-07-10 19:06:07 +0200 |
commit | bd6da20d2370c512c4ef46349391bfc8c83ded68 (patch) | |
tree | e973fd127fa8121b3b675ac235a2ccfc122d0723 /testsuite/synth/comp01/and3.vhdl | |
parent | 0ef59aec0acc050d09dc74c047aa224081c4eced (diff) | |
download | ghdl-bd6da20d2370c512c4ef46349391bfc8c83ded68.tar.gz ghdl-bd6da20d2370c512c4ef46349391bfc8c83ded68.tar.bz2 ghdl-bd6da20d2370c512c4ef46349391bfc8c83ded68.zip |
synth: add a simple test for instantiation.
Diffstat (limited to 'testsuite/synth/comp01/and3.vhdl')
-rw-r--r-- | testsuite/synth/comp01/and3.vhdl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/synth/comp01/and3.vhdl b/testsuite/synth/comp01/and3.vhdl new file mode 100644 index 000000000..be0a0c821 --- /dev/null +++ b/testsuite/synth/comp01/and3.vhdl @@ -0,0 +1,12 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity and3 is + port (a, b, c : std_logic; + o : out std_logic); +end and3; + +architecture behav of and3 is +begin + o <= a and b and c; +end behav; |