Saturday, December 12, 2020

VHDL program to implement NOT gate using data flow modeling.

--VHDL program to implement NOT gate using data flow modeling.

library IEEE;
use IEEE.std_logic_1164.all;
entity not_gate is
port(
I1 : in std_logic;
OA : out std_logic);
end entity not_gate;
architecture behav of not_gate is
begin
OA <= not I1;
end architecture behav;


For Safe Downloading of ModelSim (32/64 bit) please visit :-

For Safe Downloading of this program file please visit :-

Labels: , , , ,

0 Comments:

Post a Comment

Please feel free to ask your questions

Subscribe to Post Comments [Atom]

<< Home