Chap1 Digital System and Number System
Chap1 Digital System and Number System
Chap1 Digital System and Number System
Lecture 1
Introduction
Reference
M. Morris Mano and Charles R. Kime, Logic and Computer Design Fundamentals,
Pearson Education Inc.
Project
There will be a FPGA based design group project (3 person/group)
Homework
Homework will be assigned on regular basis.
BS Electrical Engineering
» CIIT Lahore
Contact Information
» Email: [email protected]
PCs
Laptop computer
smartcards
Mainframe/supercomputer
Router
CRT projector
Router
printer
Router
Television
Scanner
Data
PDA
Telephone
Fax
Computers are the most amazing and complex things ever built
by mankind
The Intel Core i7 based on Haswell micro-architecture (4th Generation)
has 1.4 billion transistors (as of Sep, 2013)
It runs at 3.5 GHz (billion cycles per second)
Time Time
–5 –5
Analog == Continuous
Digital == discrete
Digital systems:
• More accurate and reliable
• Readily available as self-contained, easy to cascade
building blocks
• Computers use digital circuits internally
Digital Logic Design
Digital Logic Design Ch1-12
Advantages of Digital Techniques
• Digital systems are generally easier to design.
• For this reason, digital circuits are also called logic circuits.
Circuit A Circuit B
Serial Transmission:
A B
5.0 Volts
HIGH (1)
HIGH (1) 4.0 Volts
3.0 Volts
2.0 Volts
Chapter 1
Digital Systems and Binary Numbers
Analog system
The physical quantities or signals may vary continuously over a specified
range.
Digital system
The physical quantities or signals can assume only discrete values.
Greater accuracy
X(t) X(t)
t t
Analog signal Digital signal Digital Logic Design Ch1-23
Binary Digital Signal
An information variable represented by physical quantity.
For digital systems, the variable takes on discrete values.
Two level, or binary values are the most prevalent values.
Binary values are represented abstractly by:
Digits 0 and 1
Words (symbols) False (F) and True (T) V(t)
Words (symbols) Low (L) and High (H)
And words On and Off Logic 1
Binary values are represented by values
or ranges of values of physical quantities. undefine
Logic 0
t
Binary digital signal
Multi-Input Circuits
31
Digital Logic Design Ch1-31
Decimal Number System
Base (also called radix) = 10
10 digits { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }
Digit Position
Integer & fraction 2 1 0 -1 -2
Digit Weight 5 1 2 7 4
Weight = (Base) Position
Magnitude 100 10 1 0.1 0.01
Sum of “Digit x Weight”
Formal Notation
500 10 2 0.7 0.04
d2*B2+d1*B1+d0*B0+d-1*B-1+d-2*B-2
(512.74)10
Digital Logic Design Ch1-32
Octal Number System
Base = 8
8 digits { 0, 1, 2, 3, 4, 5, 6, 7 }
Weights
Weight = (Base) Position 64 8 1 1/8 1/64
Magnitude 5 1 2 7 4
Sum of “Digit x Weight” 2 1 0 -1 -2
Formal Notation
5 *82+1 *81+2 *80+7 *8-1+4 *8-2
=(330.9375)10
(512.74)8
11000101
Digital Logic Design Ch1-34
Hexadecimal Number System
Base = 16
16 digits { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F }
Weights
Weight = (Base) Position 256 16 1 1/16 1/256
Magnitude 1 E 5 7 A
Sum of “Digit x Weight” 2 1 0 -1 -2
Formal Notation
1 *162+14 *161+5 *160+7 *16-1+10 *16-2
=(485.4765625)10
(1E5.7A)16
n 2n n 2n
0 20=1 8 28=256
1 21=2 9 29=512
2 22=4 10 210=1024 Kilo
3 23=8 11 211=2048
4 24=16 12 212=4096
5 25=32 20 220=1M Mega
1 1 Carry
5 5
+ 5 5
1 1 0
1 1 1 1 1 1
1 1 1 1 0 1 = 61
+ 1 0 1 1 1 = 23
1 0 1 0 1 0 0 = 84
1 2 = (10)2
0 2 2 0 0 2
1 0 0 1 1 0 1 = 77
− 1 0 1 1 1 = 23
0 1 1 0 1 1 0 = 54
1 0 1 1 1
x 1 0 1 0
0 0 0 0 0
1 0 1 1 1
0 0 0 0 0
1 0 1 1 1
1 1 1 0 0 1 1 0
Evaluate
Magnitude
Decimal Binary
(Base 10) (Base 2)
Hexadecimal
(Base 16)
Evaluate
Magnitude
Digital Logic Design Ch1-41
Decimal (Integer) to Binary Conversion
Divide the number by the ‘Base’ (=2)
Take the remainder (either 0 or 1) as a coefficient
Take the quotient and repeat the division
Example: (13)10
Quotient Remainder Coefficient
13/ 2 = 6 1 a0 = 1
6 /2= 3 0 a1 = 0
3 /2= 1 1 a2 = 1
1 /2= 0 1 a3 = 1
Answer: (13)10 = (a3 a2 a1 a0)2 = (1101)2
MSB LSB
Digital Logic Design Ch1-42
Decimal (Fraction) to Binary Conversion
Multiply the number by the ‘Base’ (=2)
Take the integer (either 0 or 1) as a coefficient
Take the resultant fraction and repeat the division
Example: (0.625)10
Integer Fraction Coefficient
0.625 * 2 = 1 . 25 a-1 = 1
0.25 * 2 = 0 . 5 a-2 = 0
0.5 *2= 1 . 0 a-3 = 1
Answer: (0.625)10 = (0.a-1 a-2 a-3)2 = (0.101)2
MSB LSB
Example: (0.3125)10
Integer Fraction Coefficient
0.3125 * 8 = 2 . 5 a-1 = 2
0.5 *8= 4 . 0 a-2 = 4
Answer: (0.3125)10 = (0.a-1 a-2 a-3)8 = (0.24)8
2 010
Assume Zeros
Example: 3 011
( 1 0 1 1 0 . 0 1 )2 4 100
5 101
6 110
( 2 6 . 2 )8 7 111
Example:
( 2 6 . 2 )8
( 0 1 0 1 1 0 . 0 1 0 )2
(1 6 . 4 )16
Example (10110000)2
(01001111)2
If you add a number and its 1’s complement …
10110000
+ 01001111
11111111
Example: Base-10
Example: Base-2
Example:
Number:
1’s Comp.:
10110000 10110000
01001111
+ 1
01010000 01010000
Example 1.6
Using 10's complement, subtract 3250 – 72532.
There is no end
carry.
Table 1.3 lists all possible four-bit signed binary numbers in the three
representations.
Digital Logic Design Ch1-57
Signed Binary Numbers
BCD addition
000 001
010 011
100 101
110 111
Memory
Control
CPU unit Datapath
Synchronous or
Asynchronous?
Digital Logic Design Ch1-71
Transfer of information
Figure 1.1 Transfer of information among register Digital Logic Design Ch1-72
Transfer of information
The other major component
of a digital system
Circuit elements to
manipulate individual bits of
information
Load-store machine
LD R1;
LD R2;
ADD R3, R2, R1;
SD R3;
Figure 1.2 Example of binary information processing Digital Logic Design Ch1-73
1.9 Binary Logic
Definition of Binary Logic
Binary logic consists of binary variables and a set of logical operations.
The variables are designated by letters of the alphabet, such as A, B, C, x, y, z, etc,
with each variable having two and only two distinct possible values: 1 and 0,
Three basic logical operations: AND, OR, and NOT.
AND OR NOT
x y z x y z x z
0 0 0 0 0 0 0 1
0 1 0 0 1 1 1 0
1 0 0 1 0 1
1 1 1 1 1 1
z=x•y=xy z=x+y z = x = x’
x x x
y z y z z
Digital Logic Design Ch1-75
Switching Circuits
AND OR
3
Logic 1
2
Un-define
1
Logic 0
0
Fig. 1.5 Input-Output signals for gates Digital Logic Design Ch1-78
Binary Logic
Logic gates
Graphic Symbols and Input-Output Signals for Logic gates:
+
+ 1110101111
1110101111 _________________
_________________ 1010010001
0011001101
Digital Logic Design Ch1-81
a) Arithmetic operations in BCD
+286=0286=0000 0010 1000 0110
-286 =9714=1001 0111 0001 0100
+81 = 0081=0000 0000 0100 0001
-81 = 9919=1001 1001 0001 1001
(+286) + (-81) (-286) + (-81)
+ +
1001 1001 0001 1001 1001 1001 0001 1001
_______________________________
_______________________________
0000 0010 0000 0101 1001 0110 0011 0011
Digital Logic Design Ch1-82
Assignment