VERY LARGE SCALE INTEGRATION (VLSI)
Pages
Home
Saturday, July 14, 2012
EXOR GATE
library ieee;
use ieee.std_logic_1164.all;
entity xor_gate is
port (
a: in std_logic;
b: in std_logic;
y: out std_logic);
end xor_gate;
architecture xor_gate_ar of xor_gate is
begin
y <= a xor b;
end xor_gate_ar;
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment