blob: 4f72b068266e8e4949946fae70fefef81aea4d42 (
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 cmpgt is
port (
li : integer;
ri : integer;
l4 : std_logic_vector (3 downto 0);
r3 : std_logic_vector (2 downto 0);
gt_u4u3 : out boolean;
gt_s4s3 : out boolean;
gt_u4s3 : out boolean;
gt_s4u3 : out boolean;
gt_u4i : out boolean;
gt_iu3 : out boolean;
gt_s4i : out boolean;
gt_is3 : out boolean);
end cmpgt;
library ieee;
use ieee.std_logic_arith.all;
architecture behav of cmpgt is
begin
gt_u4u3 <= unsigned(l4) > unsigned(r3);
gt_s4s3 <= signed(l4) > signed(r3);
gt_u4s3 <= unsigned(l4) > signed(r3);
gt_s4u3 <= signed(l4) > unsigned(r3);
gt_u4i <= unsigned(l4) > ri;
gt_iu3 <= li > unsigned(r3);
gt_s4i <= signed(l4) > ri;
gt_is3 <= li > signed(r3);
end behav;
|