4

I am trying to wire a 2 bit adder and a Multiplier on my breadboard. I have the 2 bit adder somewhat done, but dont know where to start on the multiplier. I need help reading circuits and translating them to the breadboard. My main issue is figuring out where the outputs and inputs go. I know the in and outs are at pin 3, 6, 8, and 11 on the 7408 chip, but i just feel im doing it wrong. Help! enter image description here

Josh
  • 459
  • 1
  • 5
  • 13
Ryan Cooley
  • 41
  • 1
  • 2

1 Answers1

4

Well I'm not sure exactly what you're asking, but I'll try to be of some help.

First, if you know how K-maps work, it'll make circuit simplification much easier. Jim Pytel does a much better job at explaining them than I could typing on an online message board

With that said, you cannot make an adder or multiplier with AND gates alone. You're going to need some more more gates. You're going to need to connect a half-adder and full adder like so. If you do not understand what these are, look at Wikipedia for a more thorough explination

schematic

simulate this circuit – Schematic created using CircuitLab

The multipler will be a bit more complicated. I'm not sure how large the multiplier will be. I suppose a 2-bit multiplier could be done easily with combinational logic on a breadboard. However, even that will take up a lot of space. What most people end up doing, especially with larger multipliers, is to make a sequential circuit instead, where they do multiplication as repeated addition sort of like you learned in grammar school. This requires that you perform an addition and save the previous result in flip-flops.

audiFanatic
  • 419
  • 1
  • 3
  • 14