VHDL program to implement XNOR gate using data flow modeling.
--VHDL program to implement XNOR gate using data flow modeling.
library IEEE;
use IEEE.std_logic_1164.all;
entity xnor_gate is
port(
I1 : in std_logic;
I2 : in std_logic;
OA : out std_logic);
end entity xnor_gate;
architecture behav of xnor_gate is
begin
OA <= I1 xnor I2;
end architecture behav;
For Safe Downloading of this program file please visit :-
Labels: Dataflow Modeling, Model Sim, program, VHDL, xnor gate
0 Comments:
Post a Comment
Please feel free to ask your questions
Subscribe to Post Comments [Atom]
<< Home