Exam Flashcards

1
Q

Draw a diagram for a 20-bit carry bypass adder, that uses 4-bit ripple carry adders

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Draw the gate implementation of a full-adder

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Describe the critical path for worst case delay of 20-bit carry bypass adder that uses ripple carry in local carry chain

A

The critical path is:

  1. Bit 0 - 3: Setup –> Local Carry Chain –> MUX
  2. Bit 4 - 7: MUX
  3. Bit 8 - 11: MUX
  4. Bit 12 - 15: MUX
  5. Bit 16 - 19: Local Carry Chain –> Sum (MUX/COUT ignored)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Draw block diagram for 4-bit CLA adder

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the delay of the square-root adder?

A

Tadd ≈ Tsetup + 2*Tcarry + √ (2*N)*Tmux + Tsum

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do we do a two-level SOP minimisation?

A
  1. Draw a Karnaugh map
  2. Loop all prime implicants
  3. Identify the essential prime implicants, which are prime implicants that can only be included in one loop and must be included in the SOP
  4. Minimise number of Second-level gate inputs which are number of prime implicants used
  5. Minimise number of First-level gate inputs which are number of variables in a single prime implicant
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do we find MEV that appear the least in a two-level SOP?

F(A,B,C,D,E,F) = B′D′E′+ABD′E′+DEF+B′E′+BD′E′+B′C′D′E.

A

The variables that appear the least are the sum products that have the least number of variables

A,C and F only appear once in function

DEF = will likely produce 4 variables as DE will produce 4

B′C′D′E = C will appear less than F

ABD’E = A will appear less than F

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How do we form a multiplexer from a SOP?

A

Form a Karnaugh map for the function with the control inputs at the top (rows) and the remaining values on the bottom (columns)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly