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;
Wednesday, December 23, 2009 at 10:09 PM Posted by Bejoy Thomas
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;
Labels: Parity Generator, VHDL Tutorial
0 comments:
Post a Comment