Comparators: Model Program: Library Ieee Use Ieee - STD - Logic - 1164.all Entity Comparator Is Generic (N: Natural: 4)
Comparators: Model Program: Library Ieee Use Ieee - STD - Logic - 1164.all Entity Comparator Is Generic (N: Natural: 4)
No: 4
Comparators
Date:
AIM:
Step 6: Declare and instantiate components in order to design adders / subtractors using
structural model.
use ieee.std_logic_1164.all;
entity comparator is
equal:out std_logic;
greater:out std_logic);
end comparator;
begin
process(
A,B)
begin
if (A<B)
greater <=
'0'; elsif
(A=B) then
less <= '0';
equal <=
'1'; greater
'0'; equal
<= '0';
greater
<= '1';
end if;
end
process;
end
behv;
RESULT: