Question:

VHDL program to implement NOT gate using data flow modeling.

Posted by Saradwata Bandyopadhyay on 01-03-2025

Tags : Dataflow Modeling Model Sim not gate program VHDL

Answer:

Here is the solution for the above question =>

                                      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;

You can directly download the Source Code and the Model Sim application from the links below =>

Add a Comment

Please Login to Comment.