Tuesday, December 15, 2020

VHDL program for implementing the following POS expression using data flow modelling: (~a v~ b) ^ (~a v c) ^ (b v c)

--VHDL program for implementing the following POS expression using data flow modelling:
--(~a v~ b) ^ (~a v c) ^ (b v c)

library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
entity product_of_sum6 is
Port
(A : in STD_LOGIC;
B : in STD_LOGIC;
C : in STD_LOGIC;
F : out STD_LOGIC);
end product_of_sum6;
architecture gate_level of product_of_sum6 is
begin
F <= (((NOT A)OR(NOT B))AND((NOT A)OR C)AND(B OR C));
end gate_level;


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