Transistors, Logic Gates, and 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 fieldeffect transistor or FET; like all transistors, used for switching or amplifying signals
● nMOSFET (nMOS): channel carries negative charges (electrons)
● pMOSFET (pMOS): channel carries positive charges (holes)

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

CMOS

A

Complimentary metal-oxide-semiconductor
Pairing nMOS and pMOS transistors together. p/n-type MOS act in a complementary way.
Furthermore, if pMOS parallel to each other than nMOS in a sequence and vice versa.
○ All CMOS gates must have 2 parts:
■ PUN (pullup network): pulls output “up” to PWR (logic 1)
● Rule: PUN can only contain PMOS transistors
■ PDN (pulldownnetwork): pulls output “down” to GND (logic 0)
● RULE: PDN can only contain NMOS transistors
○ Either PUN or PDN is “ON” at any given time (never both)
○ Output is taken where PUN and PDN intersect

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

Gate delays

A

longest path through a circuit

  • delay between change in input and and change in output
  • Delays limit the rate at which you can compute/ number of operations per second
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

PLA

A

Programmable Logic Array
Programmable logic device used to implement combination logic circuits.
Not most efficient, but it always works
Tool to go from truth table to logic gates

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

Combinational logic

A

Using several logic gates together to create a logic circuit that performs work for us like adders, multipliers, etc.
Combinational because their outputs are strictly dependent on the combination of input values that are being applied to the structure right now.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
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
8
Q

How a transistor works

A

○ Off: electrons cannot move between the source and drain, no path exists
under the gate. The transistor aka “the switch” is “OFF.”
○ On (how it works in nMOS transistor):
■ Positive charge repels holes from under the gate
■ Attracts electrons from source/drain regions
■ Creates an “ntype” channel under the oxide
● Why it’s called an “nMOS” transistor
■ Current can flow from drain to source; electrons enter source and exit drain (go from source to drain)
■ Electrons cannot penetrate oxide
● Electric field forms across oxide, why it’s called “FET”

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

De Morgans Law

A

■ A NAND B = NOT (A AND B) = (NOT A) OR (NOT B)

■ A NOR B = NOT (A OR B) = (NOT A) AND (NOT B)

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

Structure of N Bit Incrementer

A

N 1bit half adders combined

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

Subtractor

A

negate combined with Nbit incrementer

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

On what does speed of MOSFET depend

A

Length of Channel

Electron takes less time to travel across smaller distance

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

Moore’s Law

A

Every 18 moths, # of transistors that fit into an IC will double

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

Distributive Laws

A
A AND (B OR C) = (A AND B) OR (A AND C)
A OR (B AND C) = (A OR B) AND (A OR C)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Associative Laws

A
A AND (B AND C) = (A AND B) AND C
A OR (B OR C) = (A OR B) OR C
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How many select lines do we need for a 16 input Mux?

A

Need to be able to select from 16.

Hence need 4 select lines = 2^4

17
Q

Mux vs. Decoder

A

n input lines. 2^n output lines. Only one output line = 1 at any given point in time. need 2 select/address lines to access right address
Mux: n input lines. Need 2^k> = n, i.e. k select lines, to select from the n input lines. Only one output.

18
Q

Short Circuit

A

if there is a direct link from power to ground

19
Q

Half vs. Full Adder

A

Half Adder: 2 Inputs A and B, cannot handle Carry-In, 2 Outputs: Carry Out and Sum
Full Adder: 3 Inputs: A, B, and Carry-In, 2 Outputs: Carry Out and Sum
Chaining several full-adder together = binary adder

20
Q

PLA

A

Can visualize any logic equation
Consists of an array of AND gates followed by an array of OR gates
# OR gates corresponds to the number of output columns in truth table
every AND gate represents the input combinations that lead to a 1 result
consists of only AND, OR and NOT gates

21
Q

Sequential Logic Circuits

A

Can do both: a) process information/make decisions and b) store information
base their decisions not only on the input values now present, but also on what has happened before/information stored