Sep 29, 2011 #1 O Oddz313 Newbie level 1 Joined Sep 29, 2011 Messages 1 Helped 0 Reputation 0 Reaction score 0 Trophy points 1,281 Activity points 1,286 I'm doing a lab report from the quartus 2 software I used and compiled and simulated. waveform and timing from schematic of 2 full adders connected. What is the boolean equation of a 2 bit adder. thank you
I'm doing a lab report from the quartus 2 software I used and compiled and simulated. waveform and timing from schematic of 2 full adders connected. What is the boolean equation of a 2 bit adder. thank you
Oct 1, 2011 #2 G golden_star Newbie level 5 Joined Jan 22, 2011 Messages 8 Helped 0 Reputation 0 Reaction score 0 Trophy points 1,281 Location Udupi Activity points 1,319 Sum = input 1 xor input 2 xor Carry_in Carry = (input 1 and input 2) or (input 2 and Carry_in) or (Carry_in and input 1) Google it for operation of Full Adder
Sum = input 1 xor input 2 xor Carry_in Carry = (input 1 and input 2) or (input 2 and Carry_in) or (Carry_in and input 1) Google it for operation of Full Adder