Minority
Minority
-- Company:
-- Engineer:
--
-- Create Date: 11.10.2024 08:51:01
-- Design Name:
-- Module Name: minority - Behavioral
-- Project Name:
-- Target Devices:
-- Tool Versions:
-- Description:
--
-- Dependencies:
--
-- Revision:
-- Revision 0.01 - File Created
-- Additional Comments:
--
----------------------------------------------------------------------------------
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
entity minority is
Port ( a : in STD_LOGIC;
b : in STD_LOGIC;
c : in STD_LOGIC;
z : out STD_LOGIC);
end minority;
begin
Z <= ((not A) and (not B)) or ((not A) and (not C)) or ((not B) and (not C));
end Behavioral;