diff options
Diffstat (limited to 'testsuite/gna/issue50/vector.d/cmp_119.vhd')
-rw-r--r-- | testsuite/gna/issue50/vector.d/cmp_119.vhd | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testsuite/gna/issue50/vector.d/cmp_119.vhd b/testsuite/gna/issue50/vector.d/cmp_119.vhd new file mode 100644 index 000000000..2b2245787 --- /dev/null +++ b/testsuite/gna/issue50/vector.d/cmp_119.vhd @@ -0,0 +1,26 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity cmp_119 is + port ( + ne : out std_logic; + in0 : in std_logic_vector(15 downto 0); + in1 : in std_logic_vector(15 downto 0) + ); +end cmp_119; + +architecture augh of cmp_119 is + + signal tmp : std_logic; + +begin + + -- Compute the result + tmp <= + '0' when in0 /= in1 else + '1'; + + -- Set the outputs + ne <= not(tmp); + +end architecture; |