Question:

VHDL program to implement Half Adder using data flow modeling.

Posted by Saradwata Bandyopadhyay on 01-03-2025

Tags : Dataflow Modeling half adder Model Sim program VHDL

Answer:

Here is the solution for the above question =>

                                      library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity half_adder is
port (
i_bit1 : in std_logic;
i_bit2 : in std_logic;
--
o_sum : out std_logic;
o_carry : out std_logic
);
end half_adder;
architecture rtl of half_adder is
begin
o_sum <= i_bit1 xor i_bit2;
o_carry <= i_bit1 and i_bit2;
end rtl;

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

Add a Comment

Please Login to Comment.