diff options
Diffstat (limited to 'testsuite/synth/snsuns01/ucmpeq.vhdl')
-rw-r--r-- | testsuite/synth/snsuns01/ucmpeq.vhdl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/testsuite/synth/snsuns01/ucmpeq.vhdl b/testsuite/synth/snsuns01/ucmpeq.vhdl new file mode 100644 index 000000000..f6a889edc --- /dev/null +++ b/testsuite/synth/snsuns01/ucmpeq.vhdl @@ -0,0 +1,24 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity cmpeq is + port ( + li : integer; + ri : integer; + l4 : std_logic_vector (3 downto 0); + r3 : std_logic_vector (2 downto 0); + + eq_v4v3 : out boolean; + eq_v4i : out boolean; + eq_iv3 : out boolean); +end cmpeq; + +library ieee; +use ieee.std_logic_unsigned.all; + +architecture behav of cmpeq is +begin + eq_v4v3 <= l4 = r3; + eq_v4i <= l4 = ri; + eq_iv3 <= li = r3; +end behav; |