blob: bc124128f8b7ed6f5e32d267a3994868aab986d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
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_u4u3 : out boolean;
lt_s4s3 : out boolean;
lt_u4s3 : out boolean;
lt_s4u3 : out boolean;
lt_u4i : out boolean;
lt_iu3 : out boolean;
lt_s4i : out boolean;
lt_is3 : out boolean);
end cmplt;
library ieee;
use ieee.std_logic_arith.all;
architecture behav of cmplt is
begin
lt_u4u3 <= unsigned(l4) < unsigned(r3);
lt_s4s3 <= signed(l4) < signed(r3);
lt_u4s3 <= unsigned(l4) < signed(r3);
lt_s4u3 <= signed(l4) < unsigned(r3);
lt_u4i <= unsigned(l4) < ri;
lt_iu3 <= li < unsigned(r3);
lt_s4i <= signed(l4) < ri;
lt_is3 <= li < signed(r3);
end behav;
|