Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 282 Bytes

File metadata and controls

20 lines (12 loc) · 282 Bytes

Digital-electronics-1

Labs

Source code asdakdho

architecture dataflow of gates is
begin
    f_o  <= ((not b_i) and a_i) or ((not c_i) and (not b_i));
    fnand_o <=  
    --fand_o <= a_i and b_i;
    --fxor_o <= a_i xor b_i;

end architecture dataflow;