SlideShare ist ein Scribd-Unternehmen logo
1 von 39
Henry Hexmoor 1
Computer Logic and Digital Design
Chapter 1
Henry Hexmoor
• An Overview of Computer Organization
• Switches and Transistors
• Boolean Algebra and Logic
• Binary Arithmetic and Number Systems
• Combinational Logic and Circuits
• Sequential Logic and Circuits
• Memory Logic Design
• The DataPathUnit
Henry Hexmoor 2
Basic Definitions
• Computer Architecture is the programmer’s perspective on functional
behavior of a computer (e.g., 32 bits to represent an integer value)
• Computer organization is the internal structural relationships not visible to
a programmer…e.g., physical memory
Memory
CPU = Control unit +
datapath
I/O
Henry Hexmoor 3
Hierarchy of Computer ArchitectureHierarchy of Computer Architecture
I/O systemInstr. Set Proc.
Compiler
Operating
System
Application
Digital Design
Circuit Design
Instruction Set
Architecture
Firmware
Datapath & Control
Layout
Software
Hardware
Software/Hardware
Boundary
High-Level Language Programs
Assembly Language
Programs
Microprogram
Register Transfer
Notation (RTN)
Logic Diagrams
Circuit Diagrams
Machine Language
Program
Henry Hexmoor 4
Basic Definitions
• Architectural levels: Programs and applications to transistors
• Electrical Signals: discrete, atomic elements of a digital system…binary values…
input output
An ideal switch
Henry Hexmoor 5
Introduction to Digital Systems
• Analog devices and systems process time-varying
signals that can take on any value across a continuous
range.
• Digital systems use digital circuits that process digital
signals which can take on one of two values, we call:
0 and 1 (digits of the binary number system)
or LOW and HIGH
or FALSE and TRUE
• Digital computers represent the most common digital systems.
• Once-analog Systems that use digital systems today:
– Audio recording (CDs, DAT, mp3)
– Phone system switching
– Automobile engine control
– Movie effects
– Still and video cameras….
High
Low
Digital
circuit
inputs outputs
: :
Analog Signal
Digital Signal
Henry Hexmoor 6
Eight Advantages of Digital Systems Over Analog Systems
1. Reproducibility of the results
2. Accuracy of results
3. More reliable than analog systems due to better immunity to
noise.
4. Ease of design: No special math skills needed to visualize the
behavior of small digital (logic) circuits.
5. Flexibility and functionality.
6. Programmability.
7. Speed: A digital logic element can produce an output in less
than 10 nanoseconds (10-8
seconds).
8. Economy: Due to the integration of millions of digital logic
elements on a single miniature chip forming low cost integrated
circuit (ICs).
Henry Hexmoor 7
Boolean AlgebraBoolean Algebra
• Boolean Algebra named after George Boole who used it to
study human logical reasoning – calculus of proposition.
• Elements : true or false ( 0, 1)
• Operations: a OR b; a AND b, NOT a
e.g. 0 OR 1 = 1 0 OR 0 = 0
1 AND 1 = 1 1 AND 0 = 0
NOT 0 = 1 NOT 1 = 0
What is an Algebra? (e.g. algebra of integers)
set of elements (e.g. 0,1,2,..)
set of operations (e.g. +, -, *,..)
postulates/axioms (e.g. 0+x=x,..)
Henry Hexmoor 8
Digital (logic) Elements: Gates
• Digital devices or gates have one or more inputs and produce an
output that is a function of the current input value(s).
• All inputs and outputs are binary and can only take the values 0
or 1
• A gate is called a combinational circuit because the output only
depends on the current input combination.
• Digital circuits are created by using a number of connected gates
such as the output of a gate is connected to to the input of one or
more gates in such a way to achieve specific outputs for input
values.
• Digital or logic design is concerned with the design of such
circuits.
Henry Hexmoor 9
Boolean AlgebraBoolean Algebra
• Set of Elements: {0,1}
• Set of Operations: {., + , ¬ }
Signals: High = 5V = 1; Low = 0V = 0
x y x . y
0 0 0
0 1 0
1 0 0
1 1 1
x y x + y
0 0 0
0 1 1
1 0 1
1 1 1
x ¬x
0 1
1 0
x
y
x.y
x
y
x+y x x'
AND
OR
NOT
Henry Hexmoor 10
Logic GatesLogic Gates
EXCLUSIVE OR
a
b
a.b
a
b
a+b
a a'
a
b
(a+b)'
a
b
(a.b)'
a
b
a ⊕ b
a
b
a.b&
a
b
a+b+
AND
a a'1
a
b
(a.b)'&
a
b
(a+b)'≥1
a
b
a ⊕ b=1
OR
NOT
NAND
NOR
Symbol set 1 Symbol set 2
(ANSI/IEEE Standard 91-1984)
Henry Hexmoor 11
Truth Tables
• Provide a listing of every possible combination of values of
binary inputs to a digital circuit and the corresponding
outputs.
x y x . y x + y
0 0 0 0
0 1 0 1
1 0 0 1
1 1 1 1
INPUTS OUTPUTS
… …
… …
• Example (2 inputs, 2 outputs):
Digital
circuit
inputs outputs
x
y
inputs outputs
x + y
x . y
Truth table
Henry Hexmoor 12
Logic Gates: The AND GateLogic Gates: The AND Gate
A B A . B
0 0 0
0 1 0
1 0 0
1 1 1
A
B
A.B
Truth table
1 2 3 4 5 6 7
891011121314
Ground
Vcc
Top View of a TTL 74LS family 74LS08 Quad 2-input AND Gate IC Package
• The AND Gate
Henry Hexmoor 13
Logic Gates: The OR GateLogic Gates: The OR Gate
A
B
A+B
A B A + B
0 0 0
0 1 1
1 0 1
1 1 1
• The OR Gate
Truth table
Top View of a TTL 74LS family 74LS08 Quad 2-input OR Gate IC Package
Henry Hexmoor 14
Logic Gates: The NAND GateLogic Gates: The NAND Gate
• The NAND Gate
A
B
(A.B)'
A
B
(A.B)'≡
A B (A.B)'
0 0 1
0 1 1
1 0 1
1 1 0
Truth table
Top View of a TTL 74LS family 74LS00 Quad 2-input NAND Gate IC Package
• NAND gate is self-sufficient (can build any logic circuit with it).
• Can be used to implement AND/OR/NOT.
• Implementing an inverter using NAND gate:
x x'
Henry Hexmoor 15
Logic Gates: The NOR GateLogic Gates: The NOR Gate
• The NOR Gate
≡
A
B
(A+B)' A
B
(A+B)'
A B (A+B)'
0 0 1
0 1 0
1 0 0
1 1 0
Truth table
Top View of a TTL 74LS family 74LS02 Quad 2-input NOR Gate IC Package
• NOR gate is also self-sufficient (can build any logic circuit with it).
• Can be used to implement AND/OR/NOT.
• Implementing an inverter using NOR gate:
x x'
Henry Hexmoor 16
Logic Gates: The XOR GateLogic Gates: The XOR Gate
1 2 3 4 5 6 7
891011121314
Ground
Vcc
• The XOR Gate
A
B
A ⊕ B
A B A ⊕B
0 0 0
0 1 1
1 0 1
1 1 0
Truth table
Top View of a TTL 74LS family 74LS86 Quad 2-input XOR Gate IC Package
Henry Hexmoor 17
Drawing Logic CircuitsDrawing Logic Circuits
• When a Boolean expression is provided, we can
easily draw the logic circuit.
• Examples:
F1 = xyz'
(note the use of a 3-input AND gate)
x
y
z
F1
z'
Henry Hexmoor 18
Analyzing Logic CircuitsAnalyzing Logic Circuits
• When a logic circuit is provided, we can analyze the circuit to obtain
the logic expression.
• Example: What is the Boolean expression of F4?
A'B' A'B'+C (A'B'+C)'
A'
B'
C
F4
F4 = (A'B'+C)'
Henry Hexmoor 19
Integrated CircuitsIntegrated Circuits
• An Integrated circuit (IC) is a number of logic gated fabricated on a
single silicon chip.
• ICs can be classified according to how many gates they contain as
follows:
– Small-Scale Integration (SSI): Contain 1 to 20 gates.
– Medium-Scale Integration (MSI): Contain 20 to 200 gates. Examples:
Registers, decoders, counters.
– Large-Scale Integration (LSI): Contain 200 to 200,000 gates. Include small
memories, some microprocessors, programmable logic devices.
– Very Large-Scale Integration (VLSI): Usually stated in terms of number of
transistors contained usually over 1,000,000. Includes most microprocessors
and memories.
Henry Hexmoor 20
Computer Hardware GenerationsComputer Hardware Generations
• The First Generation, 1946-59: Vacuum Tubes, Relays, Mercury
Delay Lines:
– ENIAC (Electronic Numerical Integrator and Computer): First electronic computer, 18000
vacuum tubes, 1500 relays, 5000 additions/sec.
– First stored program computer: EDSAC (Electronic Delay Storage Automatic Calculator).
• The Second Generation, 1959-64: Discrete Transistors.
(e.g IBM 7000 series, DEC PDP-1)
• The Third Generation, 1964-75: Small and Medium-Scale Integrated
(SSI, MSI) Circuits. (e.g. IBM 360 mainframe)
• The Fourth Generation, 1975-Present: The Microcomputer. VLSI-
based Microprocessors.
Henry Hexmoor 21
Intentionally left blank
Henry Hexmoor 22
Positional Number Systems
• A number system consists of an order set of symbols (digits) with relations defined
for +,-,*, /
• The radix (or base) of the number system is the total number of digits allowed in
the the number system.
– Example, for the decimal number system:
• Radix, r = 10, Digits allowed = 0,1, 2, 3, 4, 5, 6, 7, 8, 9
• In positional number systems, a number is represented by a string of digits, where
each digit position has an associated weight.
• The value of a number is the weighted sum of the digits.
• The general representation of an unsigned number D with whole and fraction
portions number in a number system with radix r:
Dr = d p-1 d p-2 ….. d1 d0.d-1 d-2 …. D-n
• The number above has p digits to the left of the radix point and n fraction digits to
the right.
• A digit in position i has as associated weight ri
• The value of the number is the sum of the digits multiplied by the associated
weight ri
:
rd
i1p
ni i
D ×= ∑
−
−=
Henry Hexmoor 23
Number Systems Used in ComputersNumber Systems Used in Computers
Name
of Radix
Radix Set of Digits Example
Decimal r=10
r=2
r=16
r= 8
{0,1,2,3,4,5,6,7,8,9} 25510
Binary
{0,1,2,3,4,5,6,7} 3778
{0,1} 111111112
{0,1,2,3,4,5,6,7,8,9,A, B, C, D, E, F} FF16
Octal
Hexadecimal
Binary 0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011 1100 1101 1110 1111
Hex 0 1 2 3 4 5 6 7 8 9 A B C D E F
Decimal 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Henry Hexmoor 24
Binary numbers
• a bit: a binary digit representing a 0 or a 1.
• Binary numbers are base 2 as opposed to base 10 typically used.
• Instead of decimal places such as 1s, 10s, 100s, 1000s, etc., binary uses powers of
two to have 1s, 2s, 4s, 8s, 16s, 32s, 64s, etc.
1012=(1×22
)+(0×21
)+(1×20
)=410 + 110 = 510
101112=(1×24
)+(0×23
)+(1×22
)+(1×21
)+(1×20
)=2310
4110 = 41/2 + remainder = 11LSB
= 20/2 + remainder = 0 2SB
= 10/2 + remainder = 0 3SB
= 5/2 + remainder = 1  4SB
= 4/2 + remainder = 0  5SB
= 2/2 = 1  6SB
1010012
Henry Hexmoor 25
Largest numbers
• the largest number of d digits in base R is
Rd
- 1
Examples:
3 digits of base 10: 103
-1 = 999
2 digits of base 16: 162
-1 = 255
Henry Hexmoor 26
Decimal-to-Binary ConversionDecimal-to-Binary Conversion
• Separate the decimal number into whole and fraction portions.
• To convert the whole number portion to binary, use successive division by
2 until the quotient is 0. The remainders form the answer, with the first
remainder as the least significant bit (LSB) and the last as the most
significant bit (MSB).
• Example: Convert 17910 to binary:
179 / 2 = 89 remainder 1 (LSB)
/ 2 = 44 remainder 1
/ 2 = 22 remainder 0
/ 2 = 11 remainder 0
/ 2 = 5 remainder 1
/ 2 = 2 remainder 1
/ 2 = 1 remainder 0
/ 2 = 0 remainder 1 (MSB)
17910 = 101100112
Henry Hexmoor 27
Decimal-to-Binary examplesDecimal-to-Binary examples
108/2 = 54
54 * 2 = 108, remainder
0
54 /2 = 27
27 * 2 = 54, remainder
0
27/2 = 13.5
13 * 2 = 26, remainder
1
13 /2 = 6.5
6 * 2 = 12, remainder 1
6/2 = 3
3 * 2 = 6, remainder 0
3/2 = 1
1 * 2 = 2, remainder 1
11011002
11/2 = 5.5
5 * 2 = 10, remainder 1
5/2 = 2.5
2 * 2 = 4, remainder 1
2/2 = 1
1 * 2 = 2, remainder 0
1 / 2 = 0
0 * 2 = 0, remainder 1
10112
7/2 = 3.5
3 * 2 = 6, remainder 1
3/2 = 1
1 * 2 = 2, remainder 1
1/2 = 0
0 * 2 = 0, remainder 1
1112
90/2 = 45
45 * 2 = 90, remainder 0
45/2 = 22.5
22 * 2 = 44, remainder 1
22 * 2 = 44, remainder 0
22/2 = 11
11 * 2 = 22, remainder 0
11/2 = 5.5
5 * 2 = 10, remainder 1
5/2 = 2.5
2 * 2 = 4, remainder 1
2/2 = 1
1 * 2 = 2, remainder 0
1 / 2 = 0
0 * 2 = 0, remainder 1
10110102
Henry Hexmoor 28
Decimal-to-Hex examplesDecimal-to-Hex examples
108/16 = 6.75
6 * 16 = 96, remainder 12
6 /16 = 0
0 * 16 = 0, remainder 6
6C16
20/16 = 1
1 * 16 = 16, remainder 4
1/16 = 0
0 * 16 = 0, remainder 1
1416
32/16 = 2
2 * 16 = 32, remainder 0
2 /16 = 0
0 * 16 = 0, remainder 2
2016
90/16 = 5.625
5 * 16 = 80, remainder 10
5 / 16 = 0
0 * 16 = 0, remainder 5
5A16
160/16 = 10
10 * 16 = 160, remainder 0
10/16 = 0
0 * 16 = 0, remainder 10
A016
Henry Hexmoor 29
Decimal-to-Octal exampleDecimal-to-Octal example
108/8 = 13.5
13 * 8 = 104, remainder 4
13/8 = 1
1 * 8 = 8, remainder 5
1 / 8 = 0
0 * 8 = 0, remainder 1
1548
10/8 = 1
1 * 8 = 8, remainder 2
1/8 = 0
0 * 8 = 0, remainder 1
128
16/8 = 2
2 * 8 = 16, remainder 0
2/8 = 0
0 * 8 = 0, remainder 2
208
24/8 = 3
3 * 8 = 24, remainder 0
3/8 = 0
0 * 8 = 0, remainder 3
308
Henry Hexmoor 30
Decimal-to-Binary ConversionDecimal-to-Binary Conversion
• To convert decimal fractions to binary, repeated multiplication by 2 is used, until the fractional
product is 0 (or until the desired number of binary places). The whole digits of the multiplication
results produce the answer, with the first as the MSB, and the last as the LSB.
• Example: Convert 0.312510 to binary
Result Digit
.3125 × 2 = 0.625 0 (MSB)
.625 × 2 = 1.25 1
.25 × 2 = 0.50 0
.5 × 2 = 1.0 1 (LSB)
0.312510 = .01012
Henry Hexmoor 31
Binary Arithmetic Operations - AdditionBinary Arithmetic Operations - Addition
• Similar to decimal number addition, two binary numbers are
added by adding each pair of bits together with carry propagation.
• Addition Example:
1 0 1 1 1 1 0 0 0 Carry
X 190 1 0 1 1 1 1 1 0
Y + 141 + 1 0 0 0 1 1 0 1
X + Y 331 1 0 1 0 0 1 0 1 1
0 + 0 = 0
0 + 1 = 1
1 + 0 = 1
1 + 1 = 0 with a carry of 1
Henry Hexmoor 32
Binary Arithmetic- subtraction
95 = 1011111
-16 = 0010000
79 = 1001111
0 – 0 = 0
1 – 0 = 1
1 – 1 = 0
0 – 1 = 1 with a borrow of 1
Henry Hexmoor 33
Binary Arithmetic Operations: SubtractionBinary Arithmetic Operations: Subtraction
• Two binary numbers are subtracted by subtracting each pair of bits
together with borrowing, where needed.
• Subtraction Example:
0 0 1 1 1 1 1 0 0 Borrow
X 229 1 1 1 0 0 1 0 1
Y - 46 - 0 0 1 0 1 1 1 0
183 1 0 1 1 0 1 1 1
Henry Hexmoor 34
Binary Arithmetic - Multiplication
1011
*101
1011
0000
1011
110111
0 * 0 = 0
0 * 1 = 0
1 * 0 = 0
1 * 1 = 1
Henry Hexmoor 35
Negative Binary Number Representations
• Signed-Magnitude Representation:
– For an n-bit binary number:
Use the first bit (most significant bit, MSB) position to
represent the sign where 0 is positive and 1 is negative.
Ex. 1 1 1 1 1 1 1 12 = - 12710
– Remaining n-1 bits represent the magnitude which may range from:
-2(n-1)
+ 1 to 2(n-1)
- 1
– This scheme has two representations for 0; i.e., both positive and negative
0: for 8 bits: 00000000, 10000000
– Arithmetic under this scheme uses the sign bit to indicate the nature of the
operation and the sign of the result, but the sign bit is not used as part of
the arithmetic.
Sign
Magnitude
Henry Hexmoor 36
Parity bit
• Pad an extra bit to MSB side to make the number of 1’s to be even or odd.
• Sender and receiver of messages make sure that even/odd transmission patterns
match
Henry Hexmoor 37
Gray codes
• In binary codes, number of bit changes are not constant,
0000010100111001011101111000…
• bit changes in gray codes are constant
•000001011010110111000…
Henry Hexmoor 38
Alphanumeric Binary Codes: ASCIIAlphanumeric Binary Codes: ASCII
MSBs
LSBs 000 001 010 011 100 101 110 111
0000 NUL DLE SP 0 @ P ` p
0001 SOH DC1 ! 1 A Q a q
0010 STX DC2 “ 2 B R b r
0011 ETX DC3 # 3 C S c s
0100 EOT DC4 $ 4 D T d t
0101 ENQ NAK % 5 E U e u
0110 ACK SYN & 6 F V f v
0111 BEL ETB ‘ 7 G W g w
1000 BS CAN ( 8 H X h x
1001 HT EM ) 9 I Y i y
1010 LF SUB * : J Z j z
1011 VT ESC + ; K [ k {
1100 FF FS , < L  l |
1101 CR GS - = M ] m }
1110 O RS . > N ^ n ~
1111 SI US / ? O _ o DEL
Seven bit codes are used to represent all upper and lower case letters, numbers,
punctuation and control characters
Henry Hexmoor 39
HW 1
1. What is the decimal equivalent of the largest
integer that can be represented with 12 binary
bits.
2. Convert the following decimal numbers to
binary: 125, 610, 2003, 18944.

Weitere ähnliche Inhalte

Was ist angesagt?

Saur lecture 16
Saur lecture 16Saur lecture 16
Saur lecture 16saur28_83
 
ANALYSIS & DESIGN OF COMBINATIONAL LOGIC
ANALYSIS & DESIGN OF COMBINATIONAL LOGICANALYSIS & DESIGN OF COMBINATIONAL LOGIC
ANALYSIS & DESIGN OF COMBINATIONAL LOGICSupanna Shirguppe
 
DLD Presentation By Team Reboot,Rafin Rayan,EUB
DLD Presentation By Team Reboot,Rafin Rayan,EUBDLD Presentation By Team Reboot,Rafin Rayan,EUB
DLD Presentation By Team Reboot,Rafin Rayan,EUBRafin Rayan
 
IS 151 Lecture 9
IS 151 Lecture 9IS 151 Lecture 9
IS 151 Lecture 9wajanga
 
Chapter 06 Combinational Logic Functions
Chapter 06 Combinational Logic FunctionsChapter 06 Combinational Logic Functions
Chapter 06 Combinational Logic FunctionsSSE_AndyLi
 
Mux decod pld2_vs2
Mux decod pld2_vs2Mux decod pld2_vs2
Mux decod pld2_vs2WanNurdiana
 
COMPUTER ORGANIZATION -Multiplexer,Demultiplexer, Encoder
COMPUTER ORGANIZATION -Multiplexer,Demultiplexer, EncoderCOMPUTER ORGANIZATION -Multiplexer,Demultiplexer, Encoder
COMPUTER ORGANIZATION -Multiplexer,Demultiplexer, EncoderVanitha Chandru
 
IS 151 Lecture 1
IS 151 Lecture 1IS 151 Lecture 1
IS 151 Lecture 1wajanga
 
Logic gate tester for IC's ( Digital Electronics and Logic deisgn EE3114 )
Logic gate tester for IC's ( Digital Electronics and Logic deisgn EE3114 )Logic gate tester for IC's ( Digital Electronics and Logic deisgn EE3114 )
Logic gate tester for IC's ( Digital Electronics and Logic deisgn EE3114 )Jikrul Sayeed
 
Combinational circuits
Combinational circuits Combinational circuits
Combinational circuits DrSonali Vyas
 
Basic electronics
Basic electronicsBasic electronics
Basic electronicsMantra VLSI
 
I04124052057
I04124052057I04124052057
I04124052057IOSR-JEN
 
Digital electronics(EC8392) unit- 1-Sesha Vidhya S/ ASP/ECE/RMKCET
Digital electronics(EC8392) unit- 1-Sesha Vidhya S/ ASP/ECE/RMKCETDigital electronics(EC8392) unit- 1-Sesha Vidhya S/ ASP/ECE/RMKCET
Digital electronics(EC8392) unit- 1-Sesha Vidhya S/ ASP/ECE/RMKCETSeshaVidhyaS
 
EASA Part 66 Module 5.5 : Logic Circuit
EASA Part 66 Module 5.5 : Logic CircuitEASA Part 66 Module 5.5 : Logic Circuit
EASA Part 66 Module 5.5 : Logic Circuitsoulstalker
 

Was ist angesagt? (20)

Saur lecture 16
Saur lecture 16Saur lecture 16
Saur lecture 16
 
Logic Design
Logic DesignLogic Design
Logic Design
 
ANALYSIS & DESIGN OF COMBINATIONAL LOGIC
ANALYSIS & DESIGN OF COMBINATIONAL LOGICANALYSIS & DESIGN OF COMBINATIONAL LOGIC
ANALYSIS & DESIGN OF COMBINATIONAL LOGIC
 
DLD Presentation By Team Reboot,Rafin Rayan,EUB
DLD Presentation By Team Reboot,Rafin Rayan,EUBDLD Presentation By Team Reboot,Rafin Rayan,EUB
DLD Presentation By Team Reboot,Rafin Rayan,EUB
 
IS 151 Lecture 9
IS 151 Lecture 9IS 151 Lecture 9
IS 151 Lecture 9
 
Chapter 06 Combinational Logic Functions
Chapter 06 Combinational Logic FunctionsChapter 06 Combinational Logic Functions
Chapter 06 Combinational Logic Functions
 
Parallel adders
Parallel addersParallel adders
Parallel adders
 
Logic gates
Logic gatesLogic gates
Logic gates
 
Mux decod pld2_vs2
Mux decod pld2_vs2Mux decod pld2_vs2
Mux decod pld2_vs2
 
Digital Logic & Design
Digital Logic & DesignDigital Logic & Design
Digital Logic & Design
 
COMPUTER ORGANIZATION -Multiplexer,Demultiplexer, Encoder
COMPUTER ORGANIZATION -Multiplexer,Demultiplexer, EncoderCOMPUTER ORGANIZATION -Multiplexer,Demultiplexer, Encoder
COMPUTER ORGANIZATION -Multiplexer,Demultiplexer, Encoder
 
IS 151 Lecture 1
IS 151 Lecture 1IS 151 Lecture 1
IS 151 Lecture 1
 
07Decoders121
07Decoders12107Decoders121
07Decoders121
 
Logic gate tester for IC's ( Digital Electronics and Logic deisgn EE3114 )
Logic gate tester for IC's ( Digital Electronics and Logic deisgn EE3114 )Logic gate tester for IC's ( Digital Electronics and Logic deisgn EE3114 )
Logic gate tester for IC's ( Digital Electronics and Logic deisgn EE3114 )
 
Combinational circuits
Combinational circuits Combinational circuits
Combinational circuits
 
DESIGN OF COMBINATIONAL LOGIC
DESIGN OF COMBINATIONAL LOGICDESIGN OF COMBINATIONAL LOGIC
DESIGN OF COMBINATIONAL LOGIC
 
Basic electronics
Basic electronicsBasic electronics
Basic electronics
 
I04124052057
I04124052057I04124052057
I04124052057
 
Digital electronics(EC8392) unit- 1-Sesha Vidhya S/ ASP/ECE/RMKCET
Digital electronics(EC8392) unit- 1-Sesha Vidhya S/ ASP/ECE/RMKCETDigital electronics(EC8392) unit- 1-Sesha Vidhya S/ ASP/ECE/RMKCET
Digital electronics(EC8392) unit- 1-Sesha Vidhya S/ ASP/ECE/RMKCET
 
EASA Part 66 Module 5.5 : Logic Circuit
EASA Part 66 Module 5.5 : Logic CircuitEASA Part 66 Module 5.5 : Logic Circuit
EASA Part 66 Module 5.5 : Logic Circuit
 

Ähnlich wie Chapter1

computer logic and digital design chapter 1
computer logic and digital design chapter 1computer logic and digital design chapter 1
computer logic and digital design chapter 1tendaisigauke3
 
Introduction_to_Mechatronics_Chapter5.pdf
Introduction_to_Mechatronics_Chapter5.pdfIntroduction_to_Mechatronics_Chapter5.pdf
Introduction_to_Mechatronics_Chapter5.pdfBereket Walle
 
Digital electronics-Introduction.pptx
Digital electronics-Introduction.pptxDigital electronics-Introduction.pptx
Digital electronics-Introduction.pptxSubrata Maiti
 
Kaizen cso002 l1
Kaizen cso002 l1Kaizen cso002 l1
Kaizen cso002 l1asslang
 
Digital electronics nandhini kusuma
Digital electronics nandhini kusumaDigital electronics nandhini kusuma
Digital electronics nandhini kusumakusuma11
 
Digital electronics nandhini kusuma
Digital electronics nandhini kusumaDigital electronics nandhini kusuma
Digital electronics nandhini kusumakusuma11
 
21EC201– Digital Principles and system design.pptx
21EC201– Digital Principles and system design.pptx21EC201– Digital Principles and system design.pptx
21EC201– Digital Principles and system design.pptxGobinathAECEJRF1101
 
digital-electronics lecture Ch 1and 2 -1.pptx
digital-electronics lecture Ch 1and 2 -1.pptxdigital-electronics lecture Ch 1and 2 -1.pptx
digital-electronics lecture Ch 1and 2 -1.pptxabelllll
 
A few fundamental concepts in digital electronics
A few fundamental concepts in digital electronicsA few fundamental concepts in digital electronics
A few fundamental concepts in digital electronicsJoy Prabhakaran
 
1 Unit-1 DEC B.Tech ECE III Sem Syllabus & Intro.pptx
1 Unit-1 DEC B.Tech ECE III Sem Syllabus & Intro.pptx1 Unit-1 DEC B.Tech ECE III Sem Syllabus & Intro.pptx
1 Unit-1 DEC B.Tech ECE III Sem Syllabus & Intro.pptxSatish Chandra
 
COA Chapter 1.pdf
COA Chapter 1.pdfCOA Chapter 1.pdf
COA Chapter 1.pdfAbelAteme
 
Lata digital electronics
Lata digital electronicsLata digital electronics
Lata digital electronicslata kushwaha
 
Unit 2a combinational circuits
Unit 2a combinational circuitsUnit 2a combinational circuits
Unit 2a combinational circuitsanshul sharma
 

Ähnlich wie Chapter1 (20)

Chapter1.ppt
Chapter1.pptChapter1.ppt
Chapter1.ppt
 
computer logic and digital design chapter 1
computer logic and digital design chapter 1computer logic and digital design chapter 1
computer logic and digital design chapter 1
 
341-12-4-2001.ppt
341-12-4-2001.ppt341-12-4-2001.ppt
341-12-4-2001.ppt
 
Introduction_to_Mechatronics_Chapter5.pdf
Introduction_to_Mechatronics_Chapter5.pdfIntroduction_to_Mechatronics_Chapter5.pdf
Introduction_to_Mechatronics_Chapter5.pdf
 
Lecture 1& 2.pptx
Lecture 1& 2.pptxLecture 1& 2.pptx
Lecture 1& 2.pptx
 
Digital electronics-Introduction.pptx
Digital electronics-Introduction.pptxDigital electronics-Introduction.pptx
Digital electronics-Introduction.pptx
 
microprocessors
microprocessorsmicroprocessors
microprocessors
 
Kaizen cso002 l1
Kaizen cso002 l1Kaizen cso002 l1
Kaizen cso002 l1
 
Digital electronics nandhini kusuma
Digital electronics nandhini kusumaDigital electronics nandhini kusuma
Digital electronics nandhini kusuma
 
Digital electronics nandhini kusuma
Digital electronics nandhini kusumaDigital electronics nandhini kusuma
Digital electronics nandhini kusuma
 
21EC201– Digital Principles and system design.pptx
21EC201– Digital Principles and system design.pptx21EC201– Digital Principles and system design.pptx
21EC201– Digital Principles and system design.pptx
 
digital-electronics lecture Ch 1and 2 -1.pptx
digital-electronics lecture Ch 1and 2 -1.pptxdigital-electronics lecture Ch 1and 2 -1.pptx
digital-electronics lecture Ch 1and 2 -1.pptx
 
Dpsd lecture-notes
Dpsd lecture-notesDpsd lecture-notes
Dpsd lecture-notes
 
A few fundamental concepts in digital electronics
A few fundamental concepts in digital electronicsA few fundamental concepts in digital electronics
A few fundamental concepts in digital electronics
 
1 Unit-1 DEC B.Tech ECE III Sem Syllabus & Intro.pptx
1 Unit-1 DEC B.Tech ECE III Sem Syllabus & Intro.pptx1 Unit-1 DEC B.Tech ECE III Sem Syllabus & Intro.pptx
1 Unit-1 DEC B.Tech ECE III Sem Syllabus & Intro.pptx
 
02-gates-w.pptx
02-gates-w.pptx02-gates-w.pptx
02-gates-w.pptx
 
COA Chapter 1.pdf
COA Chapter 1.pdfCOA Chapter 1.pdf
COA Chapter 1.pdf
 
Lecture 1
Lecture 1Lecture 1
Lecture 1
 
Lata digital electronics
Lata digital electronicsLata digital electronics
Lata digital electronics
 
Unit 2a combinational circuits
Unit 2a combinational circuitsUnit 2a combinational circuits
Unit 2a combinational circuits
 

Kürzlich hochgeladen

Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024TopCSSGallery
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
React Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkReact Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkPixlogix Infotech
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfIngrid Airi González
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Nikki Chapple
 
Glenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security ObservabilityGlenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security Observabilityitnewsafrica
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 

Kürzlich hochgeladen (20)

Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
React Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkReact Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App Framework
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdf
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
 
Glenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security ObservabilityGlenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security Observability
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 

Chapter1

  • 1. Henry Hexmoor 1 Computer Logic and Digital Design Chapter 1 Henry Hexmoor • An Overview of Computer Organization • Switches and Transistors • Boolean Algebra and Logic • Binary Arithmetic and Number Systems • Combinational Logic and Circuits • Sequential Logic and Circuits • Memory Logic Design • The DataPathUnit
  • 2. Henry Hexmoor 2 Basic Definitions • Computer Architecture is the programmer’s perspective on functional behavior of a computer (e.g., 32 bits to represent an integer value) • Computer organization is the internal structural relationships not visible to a programmer…e.g., physical memory Memory CPU = Control unit + datapath I/O
  • 3. Henry Hexmoor 3 Hierarchy of Computer ArchitectureHierarchy of Computer Architecture I/O systemInstr. Set Proc. Compiler Operating System Application Digital Design Circuit Design Instruction Set Architecture Firmware Datapath & Control Layout Software Hardware Software/Hardware Boundary High-Level Language Programs Assembly Language Programs Microprogram Register Transfer Notation (RTN) Logic Diagrams Circuit Diagrams Machine Language Program
  • 4. Henry Hexmoor 4 Basic Definitions • Architectural levels: Programs and applications to transistors • Electrical Signals: discrete, atomic elements of a digital system…binary values… input output An ideal switch
  • 5. Henry Hexmoor 5 Introduction to Digital Systems • Analog devices and systems process time-varying signals that can take on any value across a continuous range. • Digital systems use digital circuits that process digital signals which can take on one of two values, we call: 0 and 1 (digits of the binary number system) or LOW and HIGH or FALSE and TRUE • Digital computers represent the most common digital systems. • Once-analog Systems that use digital systems today: – Audio recording (CDs, DAT, mp3) – Phone system switching – Automobile engine control – Movie effects – Still and video cameras…. High Low Digital circuit inputs outputs : : Analog Signal Digital Signal
  • 6. Henry Hexmoor 6 Eight Advantages of Digital Systems Over Analog Systems 1. Reproducibility of the results 2. Accuracy of results 3. More reliable than analog systems due to better immunity to noise. 4. Ease of design: No special math skills needed to visualize the behavior of small digital (logic) circuits. 5. Flexibility and functionality. 6. Programmability. 7. Speed: A digital logic element can produce an output in less than 10 nanoseconds (10-8 seconds). 8. Economy: Due to the integration of millions of digital logic elements on a single miniature chip forming low cost integrated circuit (ICs).
  • 7. Henry Hexmoor 7 Boolean AlgebraBoolean Algebra • Boolean Algebra named after George Boole who used it to study human logical reasoning – calculus of proposition. • Elements : true or false ( 0, 1) • Operations: a OR b; a AND b, NOT a e.g. 0 OR 1 = 1 0 OR 0 = 0 1 AND 1 = 1 1 AND 0 = 0 NOT 0 = 1 NOT 1 = 0 What is an Algebra? (e.g. algebra of integers) set of elements (e.g. 0,1,2,..) set of operations (e.g. +, -, *,..) postulates/axioms (e.g. 0+x=x,..)
  • 8. Henry Hexmoor 8 Digital (logic) Elements: Gates • Digital devices or gates have one or more inputs and produce an output that is a function of the current input value(s). • All inputs and outputs are binary and can only take the values 0 or 1 • A gate is called a combinational circuit because the output only depends on the current input combination. • Digital circuits are created by using a number of connected gates such as the output of a gate is connected to to the input of one or more gates in such a way to achieve specific outputs for input values. • Digital or logic design is concerned with the design of such circuits.
  • 9. Henry Hexmoor 9 Boolean AlgebraBoolean Algebra • Set of Elements: {0,1} • Set of Operations: {., + , ¬ } Signals: High = 5V = 1; Low = 0V = 0 x y x . y 0 0 0 0 1 0 1 0 0 1 1 1 x y x + y 0 0 0 0 1 1 1 0 1 1 1 1 x ¬x 0 1 1 0 x y x.y x y x+y x x' AND OR NOT
  • 10. Henry Hexmoor 10 Logic GatesLogic Gates EXCLUSIVE OR a b a.b a b a+b a a' a b (a+b)' a b (a.b)' a b a ⊕ b a b a.b& a b a+b+ AND a a'1 a b (a.b)'& a b (a+b)'≥1 a b a ⊕ b=1 OR NOT NAND NOR Symbol set 1 Symbol set 2 (ANSI/IEEE Standard 91-1984)
  • 11. Henry Hexmoor 11 Truth Tables • Provide a listing of every possible combination of values of binary inputs to a digital circuit and the corresponding outputs. x y x . y x + y 0 0 0 0 0 1 0 1 1 0 0 1 1 1 1 1 INPUTS OUTPUTS … … … … • Example (2 inputs, 2 outputs): Digital circuit inputs outputs x y inputs outputs x + y x . y Truth table
  • 12. Henry Hexmoor 12 Logic Gates: The AND GateLogic Gates: The AND Gate A B A . B 0 0 0 0 1 0 1 0 0 1 1 1 A B A.B Truth table 1 2 3 4 5 6 7 891011121314 Ground Vcc Top View of a TTL 74LS family 74LS08 Quad 2-input AND Gate IC Package • The AND Gate
  • 13. Henry Hexmoor 13 Logic Gates: The OR GateLogic Gates: The OR Gate A B A+B A B A + B 0 0 0 0 1 1 1 0 1 1 1 1 • The OR Gate Truth table Top View of a TTL 74LS family 74LS08 Quad 2-input OR Gate IC Package
  • 14. Henry Hexmoor 14 Logic Gates: The NAND GateLogic Gates: The NAND Gate • The NAND Gate A B (A.B)' A B (A.B)'≡ A B (A.B)' 0 0 1 0 1 1 1 0 1 1 1 0 Truth table Top View of a TTL 74LS family 74LS00 Quad 2-input NAND Gate IC Package • NAND gate is self-sufficient (can build any logic circuit with it). • Can be used to implement AND/OR/NOT. • Implementing an inverter using NAND gate: x x'
  • 15. Henry Hexmoor 15 Logic Gates: The NOR GateLogic Gates: The NOR Gate • The NOR Gate ≡ A B (A+B)' A B (A+B)' A B (A+B)' 0 0 1 0 1 0 1 0 0 1 1 0 Truth table Top View of a TTL 74LS family 74LS02 Quad 2-input NOR Gate IC Package • NOR gate is also self-sufficient (can build any logic circuit with it). • Can be used to implement AND/OR/NOT. • Implementing an inverter using NOR gate: x x'
  • 16. Henry Hexmoor 16 Logic Gates: The XOR GateLogic Gates: The XOR Gate 1 2 3 4 5 6 7 891011121314 Ground Vcc • The XOR Gate A B A ⊕ B A B A ⊕B 0 0 0 0 1 1 1 0 1 1 1 0 Truth table Top View of a TTL 74LS family 74LS86 Quad 2-input XOR Gate IC Package
  • 17. Henry Hexmoor 17 Drawing Logic CircuitsDrawing Logic Circuits • When a Boolean expression is provided, we can easily draw the logic circuit. • Examples: F1 = xyz' (note the use of a 3-input AND gate) x y z F1 z'
  • 18. Henry Hexmoor 18 Analyzing Logic CircuitsAnalyzing Logic Circuits • When a logic circuit is provided, we can analyze the circuit to obtain the logic expression. • Example: What is the Boolean expression of F4? A'B' A'B'+C (A'B'+C)' A' B' C F4 F4 = (A'B'+C)'
  • 19. Henry Hexmoor 19 Integrated CircuitsIntegrated Circuits • An Integrated circuit (IC) is a number of logic gated fabricated on a single silicon chip. • ICs can be classified according to how many gates they contain as follows: – Small-Scale Integration (SSI): Contain 1 to 20 gates. – Medium-Scale Integration (MSI): Contain 20 to 200 gates. Examples: Registers, decoders, counters. – Large-Scale Integration (LSI): Contain 200 to 200,000 gates. Include small memories, some microprocessors, programmable logic devices. – Very Large-Scale Integration (VLSI): Usually stated in terms of number of transistors contained usually over 1,000,000. Includes most microprocessors and memories.
  • 20. Henry Hexmoor 20 Computer Hardware GenerationsComputer Hardware Generations • The First Generation, 1946-59: Vacuum Tubes, Relays, Mercury Delay Lines: – ENIAC (Electronic Numerical Integrator and Computer): First electronic computer, 18000 vacuum tubes, 1500 relays, 5000 additions/sec. – First stored program computer: EDSAC (Electronic Delay Storage Automatic Calculator). • The Second Generation, 1959-64: Discrete Transistors. (e.g IBM 7000 series, DEC PDP-1) • The Third Generation, 1964-75: Small and Medium-Scale Integrated (SSI, MSI) Circuits. (e.g. IBM 360 mainframe) • The Fourth Generation, 1975-Present: The Microcomputer. VLSI- based Microprocessors.
  • 22. Henry Hexmoor 22 Positional Number Systems • A number system consists of an order set of symbols (digits) with relations defined for +,-,*, / • The radix (or base) of the number system is the total number of digits allowed in the the number system. – Example, for the decimal number system: • Radix, r = 10, Digits allowed = 0,1, 2, 3, 4, 5, 6, 7, 8, 9 • In positional number systems, a number is represented by a string of digits, where each digit position has an associated weight. • The value of a number is the weighted sum of the digits. • The general representation of an unsigned number D with whole and fraction portions number in a number system with radix r: Dr = d p-1 d p-2 ….. d1 d0.d-1 d-2 …. D-n • The number above has p digits to the left of the radix point and n fraction digits to the right. • A digit in position i has as associated weight ri • The value of the number is the sum of the digits multiplied by the associated weight ri : rd i1p ni i D ×= ∑ − −=
  • 23. Henry Hexmoor 23 Number Systems Used in ComputersNumber Systems Used in Computers Name of Radix Radix Set of Digits Example Decimal r=10 r=2 r=16 r= 8 {0,1,2,3,4,5,6,7,8,9} 25510 Binary {0,1,2,3,4,5,6,7} 3778 {0,1} 111111112 {0,1,2,3,4,5,6,7,8,9,A, B, C, D, E, F} FF16 Octal Hexadecimal Binary 0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011 1100 1101 1110 1111 Hex 0 1 2 3 4 5 6 7 8 9 A B C D E F Decimal 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
  • 24. Henry Hexmoor 24 Binary numbers • a bit: a binary digit representing a 0 or a 1. • Binary numbers are base 2 as opposed to base 10 typically used. • Instead of decimal places such as 1s, 10s, 100s, 1000s, etc., binary uses powers of two to have 1s, 2s, 4s, 8s, 16s, 32s, 64s, etc. 1012=(1×22 )+(0×21 )+(1×20 )=410 + 110 = 510 101112=(1×24 )+(0×23 )+(1×22 )+(1×21 )+(1×20 )=2310 4110 = 41/2 + remainder = 11LSB = 20/2 + remainder = 0 2SB = 10/2 + remainder = 0 3SB = 5/2 + remainder = 1  4SB = 4/2 + remainder = 0  5SB = 2/2 = 1  6SB 1010012
  • 25. Henry Hexmoor 25 Largest numbers • the largest number of d digits in base R is Rd - 1 Examples: 3 digits of base 10: 103 -1 = 999 2 digits of base 16: 162 -1 = 255
  • 26. Henry Hexmoor 26 Decimal-to-Binary ConversionDecimal-to-Binary Conversion • Separate the decimal number into whole and fraction portions. • To convert the whole number portion to binary, use successive division by 2 until the quotient is 0. The remainders form the answer, with the first remainder as the least significant bit (LSB) and the last as the most significant bit (MSB). • Example: Convert 17910 to binary: 179 / 2 = 89 remainder 1 (LSB) / 2 = 44 remainder 1 / 2 = 22 remainder 0 / 2 = 11 remainder 0 / 2 = 5 remainder 1 / 2 = 2 remainder 1 / 2 = 1 remainder 0 / 2 = 0 remainder 1 (MSB) 17910 = 101100112
  • 27. Henry Hexmoor 27 Decimal-to-Binary examplesDecimal-to-Binary examples 108/2 = 54 54 * 2 = 108, remainder 0 54 /2 = 27 27 * 2 = 54, remainder 0 27/2 = 13.5 13 * 2 = 26, remainder 1 13 /2 = 6.5 6 * 2 = 12, remainder 1 6/2 = 3 3 * 2 = 6, remainder 0 3/2 = 1 1 * 2 = 2, remainder 1 11011002 11/2 = 5.5 5 * 2 = 10, remainder 1 5/2 = 2.5 2 * 2 = 4, remainder 1 2/2 = 1 1 * 2 = 2, remainder 0 1 / 2 = 0 0 * 2 = 0, remainder 1 10112 7/2 = 3.5 3 * 2 = 6, remainder 1 3/2 = 1 1 * 2 = 2, remainder 1 1/2 = 0 0 * 2 = 0, remainder 1 1112 90/2 = 45 45 * 2 = 90, remainder 0 45/2 = 22.5 22 * 2 = 44, remainder 1 22 * 2 = 44, remainder 0 22/2 = 11 11 * 2 = 22, remainder 0 11/2 = 5.5 5 * 2 = 10, remainder 1 5/2 = 2.5 2 * 2 = 4, remainder 1 2/2 = 1 1 * 2 = 2, remainder 0 1 / 2 = 0 0 * 2 = 0, remainder 1 10110102
  • 28. Henry Hexmoor 28 Decimal-to-Hex examplesDecimal-to-Hex examples 108/16 = 6.75 6 * 16 = 96, remainder 12 6 /16 = 0 0 * 16 = 0, remainder 6 6C16 20/16 = 1 1 * 16 = 16, remainder 4 1/16 = 0 0 * 16 = 0, remainder 1 1416 32/16 = 2 2 * 16 = 32, remainder 0 2 /16 = 0 0 * 16 = 0, remainder 2 2016 90/16 = 5.625 5 * 16 = 80, remainder 10 5 / 16 = 0 0 * 16 = 0, remainder 5 5A16 160/16 = 10 10 * 16 = 160, remainder 0 10/16 = 0 0 * 16 = 0, remainder 10 A016
  • 29. Henry Hexmoor 29 Decimal-to-Octal exampleDecimal-to-Octal example 108/8 = 13.5 13 * 8 = 104, remainder 4 13/8 = 1 1 * 8 = 8, remainder 5 1 / 8 = 0 0 * 8 = 0, remainder 1 1548 10/8 = 1 1 * 8 = 8, remainder 2 1/8 = 0 0 * 8 = 0, remainder 1 128 16/8 = 2 2 * 8 = 16, remainder 0 2/8 = 0 0 * 8 = 0, remainder 2 208 24/8 = 3 3 * 8 = 24, remainder 0 3/8 = 0 0 * 8 = 0, remainder 3 308
  • 30. Henry Hexmoor 30 Decimal-to-Binary ConversionDecimal-to-Binary Conversion • To convert decimal fractions to binary, repeated multiplication by 2 is used, until the fractional product is 0 (or until the desired number of binary places). The whole digits of the multiplication results produce the answer, with the first as the MSB, and the last as the LSB. • Example: Convert 0.312510 to binary Result Digit .3125 × 2 = 0.625 0 (MSB) .625 × 2 = 1.25 1 .25 × 2 = 0.50 0 .5 × 2 = 1.0 1 (LSB) 0.312510 = .01012
  • 31. Henry Hexmoor 31 Binary Arithmetic Operations - AdditionBinary Arithmetic Operations - Addition • Similar to decimal number addition, two binary numbers are added by adding each pair of bits together with carry propagation. • Addition Example: 1 0 1 1 1 1 0 0 0 Carry X 190 1 0 1 1 1 1 1 0 Y + 141 + 1 0 0 0 1 1 0 1 X + Y 331 1 0 1 0 0 1 0 1 1 0 + 0 = 0 0 + 1 = 1 1 + 0 = 1 1 + 1 = 0 with a carry of 1
  • 32. Henry Hexmoor 32 Binary Arithmetic- subtraction 95 = 1011111 -16 = 0010000 79 = 1001111 0 – 0 = 0 1 – 0 = 1 1 – 1 = 0 0 – 1 = 1 with a borrow of 1
  • 33. Henry Hexmoor 33 Binary Arithmetic Operations: SubtractionBinary Arithmetic Operations: Subtraction • Two binary numbers are subtracted by subtracting each pair of bits together with borrowing, where needed. • Subtraction Example: 0 0 1 1 1 1 1 0 0 Borrow X 229 1 1 1 0 0 1 0 1 Y - 46 - 0 0 1 0 1 1 1 0 183 1 0 1 1 0 1 1 1
  • 34. Henry Hexmoor 34 Binary Arithmetic - Multiplication 1011 *101 1011 0000 1011 110111 0 * 0 = 0 0 * 1 = 0 1 * 0 = 0 1 * 1 = 1
  • 35. Henry Hexmoor 35 Negative Binary Number Representations • Signed-Magnitude Representation: – For an n-bit binary number: Use the first bit (most significant bit, MSB) position to represent the sign where 0 is positive and 1 is negative. Ex. 1 1 1 1 1 1 1 12 = - 12710 – Remaining n-1 bits represent the magnitude which may range from: -2(n-1) + 1 to 2(n-1) - 1 – This scheme has two representations for 0; i.e., both positive and negative 0: for 8 bits: 00000000, 10000000 – Arithmetic under this scheme uses the sign bit to indicate the nature of the operation and the sign of the result, but the sign bit is not used as part of the arithmetic. Sign Magnitude
  • 36. Henry Hexmoor 36 Parity bit • Pad an extra bit to MSB side to make the number of 1’s to be even or odd. • Sender and receiver of messages make sure that even/odd transmission patterns match
  • 37. Henry Hexmoor 37 Gray codes • In binary codes, number of bit changes are not constant, 0000010100111001011101111000… • bit changes in gray codes are constant •000001011010110111000…
  • 38. Henry Hexmoor 38 Alphanumeric Binary Codes: ASCIIAlphanumeric Binary Codes: ASCII MSBs LSBs 000 001 010 011 100 101 110 111 0000 NUL DLE SP 0 @ P ` p 0001 SOH DC1 ! 1 A Q a q 0010 STX DC2 “ 2 B R b r 0011 ETX DC3 # 3 C S c s 0100 EOT DC4 $ 4 D T d t 0101 ENQ NAK % 5 E U e u 0110 ACK SYN & 6 F V f v 0111 BEL ETB ‘ 7 G W g w 1000 BS CAN ( 8 H X h x 1001 HT EM ) 9 I Y i y 1010 LF SUB * : J Z j z 1011 VT ESC + ; K [ k { 1100 FF FS , < L l | 1101 CR GS - = M ] m } 1110 O RS . > N ^ n ~ 1111 SI US / ? O _ o DEL Seven bit codes are used to represent all upper and lower case letters, numbers, punctuation and control characters
  • 39. Henry Hexmoor 39 HW 1 1. What is the decimal equivalent of the largest integer that can be represented with 12 binary bits. 2. Convert the following decimal numbers to binary: 125, 610, 2003, 18944.