Bejoy Thomas
Wednesday, December 23, 2009
VHDL code for Odd Parity Generator
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;
0 comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment