diff options
Diffstat (limited to 'testsuite/synth/unary01/test.vhdl')
-rw-r--r-- | testsuite/synth/unary01/test.vhdl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/synth/unary01/test.vhdl b/testsuite/synth/unary01/test.vhdl new file mode 100644 index 000000000..a3d4271a9 --- /dev/null +++ b/testsuite/synth/unary01/test.vhdl @@ -0,0 +1,14 @@ +library ieee; +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; + +entity test is + port (a, b : in std_logic_vector(7 downto 0); + o, p : out std_logic); +end test; + +architecture behav of test is +begin + o <= or a; + p <= and b; +end behav; |