F AC B Please solve this functon using the VHDL software u
F = A\'C\' + B
Please solve this functon using the VHDL software using AND, OR gates and provide me with the VHDL code. Please show the timing diagram. use this website https://www.edaplayground.com/
Solution
entity boolfun is
port(A,B,C: in bit; F: out bit);
end entity boolfun;
architecture expboolfun of boolfun is
begin
F=(not(A) and not(C)) or B
End architecture expboolfun;
