Module 3: Transistors / Logic Gates / Combinational Logic Flashcards

1
Q

transistor

A

electrical device that acts as an electrical switch; typically made from silicon

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

MOSFET

A

(metal-oxide semiconductor field-effect transistor) a specialized field-effect transistor or FET; like all transistors, used for switching or amplifying signals

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

nMOSFET (nMOS)

A

channel carries negative charges (ON when gate is high voltage)

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

pMOSFET (pMOS)

A

channel carries positive charges (holes) / ON when gate is low voltage or 0

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

CMOS

A

pairing nMOS and pMOS transistors together

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

Inverter

A

logic gate that implements logical negation

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

NAND

A

logic gate producing an output that is false only if all its inputs are true; parallel structure on top and series on bottom

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

NOR

A

result of the negation of the OR operator; can also be seen as an AND gate with all the inputs inverted; parallel structure on bottom and series on top

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

Gate delays

A

longest path (in gates) through a circuit

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

PLA (programmable logic array)

A

a kind of programmable logic device used to implement combinational logic circuits

a tool to go from truth table to logic gates

not the most efficient but it always works!

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

half adder

A

logic circuit implementing binary addition

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

combinational logic

A

using several logic gates together to create a logic circuit that performs work for us like adders multipliers, etc.

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

multiplexer (MUX)

A

device that combines several analogs or digital input signals and forwards them into a single output line

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

transistor: electronic switch

A
  • 2 complementary flavors: nMOSFET and pMOSFET (CMOS)

* controls the flow of current in a circuit

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

general structure for CMOS

A

2 parts

  • PUN (pull-up network): pulls output “up” to PWR (logic 1)
    rule: PUN can only have pMOS transistors
  • PDN (pull down network): pulls output “down” to GND (logic 0)
    rule: PDN can only contain nMOS transistors

either PUN or PDN is on at any given time
if both are on then there is a short circuit

output is taken where PUN and PDN intersect

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

how a transistor works

A

off: electrons cannot move between the source and drain, no path exists under gate and the transistor is OFF

in nMOS:
positive charge repels holes from under the gate
attracts electrons from source/drain regions
creates an n-type channel under the oxide (this is why it is called n-type)
current can flow from drain to source; electrons enter source and exit drain
electrons cannot penetrate oxide (electric field forms across oxide, why it’s called “FET”)

17
Q

Logic Minimization using LAWS of Boolean Algebra

A

Identities:
X AND 1 = X ; X AND 0 = 0
X OR 1 = 1; X OR 0 = X

Associative laws:
A AND (B AND C) = (A AND B) AND C
A OR (B AND C) = (A OR B) AND (A OR C)

De Morgan’s laws:
A NAND B = NOT (A AND B) = (NOT A) or (NOT B)
A NOR B = NOT (A OR B) = (NOT A) AND (NOT B)

18
Q

Binary Number Calculators

A

N-bit incrementer: N 1-bit half adders
Subtractor: negate combined with N-bit incrementer
Selector (MUX):
-n select bits choose from 2^n inputs
-adder/subtractor
Multiplier: combinational multiplier using adders and MUXs