Posted by Saradwata Bandyopadhyay on 01-03-2025
Here is the solution for the above question =>
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
entity sum_of_product is
Port
(A : in STD_LOGIC;
B : in STD_LOGIC;
C : in STD_LOGIC;
F : out STD_LOGIC);
end sum_of_product;
architecture gate_level of sum_of_product is
begin
F <= (((NOT A) AND (NOT B) AND (C )) OR ((NOT A) AND (B) AND (NOT C)) OR ((NOT A) AND B AND C) OR(A AND (NOT B) AND C));
end gate_level;
You can directly download the Source Code and the Model Sim application from the
links below =>
Login to Comment.