library ieee;
use ieee.std_logic_1164.all;
entity bejoy_op is
port(x,y,z:in std_logic;
p:out std_logic);
end bejoy_op;
architecture a of bejoy_op is
begin
p<=((x xor y) xor z);
end a;
use ieee.std_logic_1164.all;
entity bejoy_op is
port(x,y,z:in std_logic;
p:out std_logic);
end bejoy_op;
architecture a of bejoy_op is
begin
p<=((x xor y) xor z);
end a;
Comments
Post a Comment