Question:

VHDL program to implement 2:1 Multiplexer using data flow modeling.

Posted by Saradwata Bandyopadhyay on 01-03-2025

Tags : Dataflow Modeling 2:1 multiplexer Model Sim program VHDL

Answer:

Here is the solution for the above question =>

                                      library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity BASIC_MUX is
port( I0, I1 ,X: in std_logic;
F : out std_logic);
end entity;
architecture dataflow of BASIC_MUX is
begin
F <= ((I0 and (not X)) or (I1 and X));
end dataflow;

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

Add a Comment

Please Login to Comment.