aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/snsuns01/ucmplt.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/snsuns01/ucmplt.vhdl')
-rw-r--r--testsuite/synth/snsuns01/ucmplt.vhdl24
1 files changed, 24 insertions, 0 deletions
diff --git a/testsuite/synth/snsuns01/ucmplt.vhdl b/testsuite/synth/snsuns01/ucmplt.vhdl
new file mode 100644
index 000000000..aa2f19bb3
--- /dev/null
+++ b/testsuite/synth/snsuns01/ucmplt.vhdl
@@ -0,0 +1,24 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity cmplt is
+ port (
+ li : integer;
+ ri : integer;
+ l4 : std_logic_vector (3 downto 0);
+ r3 : std_logic_vector (2 downto 0);
+
+ lt_v4v3 : out boolean;
+ lt_v4i : out boolean;
+ lt_iv3 : out boolean);
+end cmplt;
+
+library ieee;
+use ieee.std_logic_unsigned.all;
+
+architecture behav of cmplt is
+begin
+ lt_v4v3 <= l4 < r3;
+ lt_v4i <= l4 < ri;
+ lt_iv3 <= li < r3;
+end behav;