SlideShare a Scribd company logo
1 of 48
Download to read offline
8051 (MICROCONTROLLER)
Nitin Ahire
XIE, Mahim
Prof. Nitin Ahire
1
MICROCONTROLLER
What is a microcontroller ?
Basically a device which integrates a number of
components of a microprocessor system on to a
single chip, only need to supplied power and
clocking.
Microcontroller combines on the same chip
1) The CPU core
2) I/O Ports
3) Memory
4) Timer
Prof. Nitin Ahire
2
HISTORY
In 1981, Intel Corporation introduced an 8 bit
microcontroller called 8051.
It was also referred to as ā€œ system on chipā€
The 8051 is the original member of MCS-51
family
Other members of 8051
8031, 8052, 8751, AT89C51, etc
Prof. Nitin Ahire
3
Prof. Nitin Ahire
4
Microprocessor
CPU is stand-alone, RAM,
ROM, I/O, timer are separate
Designer can decide on the
amount of ROM, RAM and
I/O ports.
Expansive
General-purpose
Microcontroller
ā€¢ CPU, RAM, ROM, I/O and
timer are all on a single chip
ā€¢ Fix amount of on-chip ROM,
RAM, I/O ports
ā€¢ For applications in which cost,
power and space are critical
ā€¢ Single-purpose
Microprocessor vs. Microcontroller
CHOOSING A MICROCONTROLLER
Computing needs
Speed, packaging, power consumption, RAM, ROM,
I/O pins, timers, upgrade to high performance or
low-power versions, cost etc
Software development tools
Assembler, debugger, C compiler, technical support
Availability & source
Prof. Nitin Ahire
5
Prof. Nitin Ahire
6
Microcontroller vs.Microcontroller vs.
MicroprocessorsMicroprocessors
Prof. Nitin Ahire
7
An embedded product uses a microcontroller
(microprocessor) to do one (single) task only.
Embedded system means the processor is
embedded into that application.
In an embedded system, there is only one
application software that is typically burned into
ROM.
Exampleļ¼šprinter, keyboard, video game player
Embedded System
COMPANIES PRODUCING 8051
Table :Some Companies Producing a Member ofTable :Some Companies Producing a Member ofTable :Some Companies Producing a Member ofTable :Some Companies Producing a Member of
the 8051 Familythe 8051 Familythe 8051 Familythe 8051 Family
Company Web Site
Intel www.intel.com/design/mcs51
Atmel www.atmel.com
Philips/Signetics www.semiconductors.philips.com
Siemens www.sci.siemens.com
Dallas
Semiconductor
www.dalsemi.com
8
Prof. Nitin Ahire
8051 FAMILY
Table :Comparison of 8051 Family MembersTable :Comparison of 8051 Family MembersTable :Comparison of 8051 Family MembersTable :Comparison of 8051 Family Members
Prof. Nitin Ahire
9
FeatureFeature 80518051 80528052 80318031
ROM (on chip program space in bytes)ROM (on chip program space in bytes) 4K4K 8K8K 0K0K
RAM (bytes)RAM (bytes) 128128 256256 128128
TimersTimers 22 33 22
I/O pinsI/O pins 3232 3232 3232
Serial portSerial port 11 11 11
Interrupt sourcesInterrupt sources 66 88 66
VARIOUS 8051 MICROCONTROLLERS
8031 microcontroller (ROM -Less)
8751 microcontroller
UV-EPROM (20 minutes)
AT89C51 from Atmel Corporation
Flash (erase before write)
DS5000 from Dallas Semiconductor
NV-RAM (changed one byte at a time), RTC (real-time
clock)
OTP (one-time-programmable) version of 8051
8051 family from Philips
AD, DA, extended I/O, OTP and flash
Prof. Nitin Ahire
10
MAJOR 8-BIT MICROCONTROLLERS.
They are : 1)Motorolaā€™s 6811, 2)Intelā€™s 8051,
3)Zilog Z8, and 4)PIC 16X from Microchip
Technology.
Each of the above microcontrollers has unique
instruction set and register set; there fore they
are not compatible with each other. Program
written for one will not run on the others
Prof. Nitin Ahire
11
FEATURE OF 8051
The 8051 is 8 ā€“ bit microcontroller.
There are 16 bit -address lines and 8 ā€“bit data lines.
On chip Program memory
ROM 4 KB
On chip Data memory
RAM 128 byte
32 bidirectional I/O lines arranged as four 8-bit port
( port 0 ā€“ port 3)
2- sixteen bit Timer/Counter ( Timer 0 and Timer 1)
Four register Banks ( Bank 0- Bank 3)
Direct bit and byte addressability
Prof. Nitin Ahire
12
INSIDE 8051 MICROCONTROLLER
Introduced by Intel in 1981
13
Prof. Nitin Ahire
Prof. Nitin Ahire
14
ARCHITECTURE OF 8051
Accumulator : It is an 8 ā€“ bit register used for
arithmetic and logical operation to
accumulate the result. Several function like
rotate, swap etc apply on the accumulator
B register: It is use with A register for
multiplication and division for other
instruction it is treated as scratch pad
register.
Prof. Nitin Ahire
15
ARCHITECTURE OF 8051
ALU : The ALU can perform arithmetic and
logical operation on 8-bit data. Like add, sub,
mul, div or AND or OR ,compliment, etc.
Program counter (PC) : It is a 16 ā€“bit register. It
is used to hold the address of an instruction
(program) stored in the memory.
Program status word ( PSW ): Many instruction
affect the status flags in order to address these
flags conveniently they can be grouped to from
PSW
Prof. Nitin Ahire
16
8051 FLAG BITS
PSW (Program status word) register
It is an 8-bit register
It is a bit addressable register
CY- Carry flag PSW.7
AC- Auxiliary carry PSW.6
FO ā€“ Available to the user for general purpose
RS0-RS1- Register Bank selector (PSW.3, PSW.4)
Prof. Nitin Ahire
17
CY AC -OVRS0RS1FO P
8051 FLAG BITS
OV- overflow Flag PSW.2
P- Parity Flag PSW.0
RS1 RS0 Register Bank Address
0 0 Bank 0 00h-07h
0 1 Bank 1 08h- 0fh
1 0 Bank2 10h-17h
1 1 Bank3 18h-1Fh
Prof. Nitin Ahire
18
8051 FLAG BITS
CY- This flag is set whenever there is carry from d7 bit.
This flag bit is affected after addition or subtraction. It
can also set 1 or 0 directly by instruction such as
ā€œSETB Cā€ and ā€œ CLR Cā€
AC- If there is carry from D3 to D4 during an ADD or
SUB operation, this bit is set; otherwise it is cleared
( used in BCD arithmetic)
P ā€“ The Parity Flag reflects the number of 1s in the A
( accumulator) . If A contains odd number of 1s, then
P=1 and A contains even number of 1s, then P=0
Prof. Nitin Ahire
19
8051 FLAG BITS
OV ā€“ this flag is set whenever the result of
singed number operation is too large, causing
the high-order bit to overflow into the sign bit
( It is used only in signed operation)
Prof. Nitin Ahire
20
8051 REGISTER BANKS AND STACK
The 8051 has a total 128 bytes of RAM.
The 128 bytes of RAM in side the 8051 are
assigned address 00 to 7Fh.
The 128 bytes are divided into three different
groups as follows
1) A total of 32323232 bytes from locations 00 to 1F00 to 1F00 to 1F00 to 1F hex
are set aside for register banks and the stack.
2) A total of 16161616 bytes from locations 20h to 2Fh20h to 2Fh20h to 2Fh20h to 2Fh
are aside for bit addressable read/write memory
3) A total 80808080 bytes from location 30h to 7Fh30h to 7Fh30h to 7Fh30h to 7Fh are
used for read and write storage normally called
ā€˜scratch padā€™ RAM
Prof. Nitin Ahire
21
RAM memory space allocation in theRAM memory space allocation in theRAM memory space allocation in theRAM memory space allocation in the 8051805180518051
Prof. Nitin Ahire
22
7FH
30H
2FH
20H
1FH
17H
10H
0FH
07H
08H
18H
00H Register Bank 0
Register Bank 1
Register Bank 2
Register Bank 3
Bit-Addressable RAM
Scratch pad RAM
Prof. Nitin Ahire
23
Bank 0
Bank 2
Bank 1
Bank 3
0001020304050607
08090A0B0C0D0E0F
78797A7B7C7D7E7F
00
1F
20
2F
30
7F
4 Reg. BANK 8 bytes each
32 bytes
Bit addressable RAM
16 bytes ( 80 bits)
General purpose RAM
80 bytes
Internal RAM memory organization
REGISTER BANKS IN 8051
The 32 bytes of RAM are divided into 4 banks
of register in which each bank has 8 registers,
R0-R7. Bank 0 Bank 1 Bank 2
Bank3
Prof. Nitin Ahire
24
R7
R6
R5
R4
R3
R2
R1
R0
R7
R6
R5
R4
R3
R2
R1
R0
R7
R6
R5
R4
R3
R2
R1
R0
R7
R6
R5
R4
R3
R2
R1
R0
STACK IN THE 8051
The register used to access
the stack is called SP (stack
pointer) register.
The stack pointer in the
8051 is only 8 bits wide,
which means that it can take
value 00 to FFH. When
8051 powered up, the SP
register contains value 07.
Prof. Nitin Ahire
25
7FH
30H
2FH
20H
1FH
17H
10H
0FH
07H
08H
18H
00H
Register Bank 0
(Stack) Register Bank 1
Register Bank 2
Register Bank 3
Bit-Addressable RAM
Scratch pad RAM
ARCHITECTURE OF 8051
DPTR: The data pointer is 16 bit register
It is used to hold the address of data in the
memory.
It can be accessed separately as lower
8 bit (DPL) and higher 8 bit (DPH)
The DPTR does not have a single internal
address instead DPH and DPL are each
assigned a separate address.
Prof. Nitin Ahire
26
ARCHITECTURE OF 8051
Stack and Stack Pointer :
The stack is the reserved area of the memory in the
RAM where temporary information may be stored.
an 8 ā€“ bit stack pointer is used to hold the address
of most recent stack entry. Generally it is called top
of the stack
It work on LIFO or FILO principle
By default location of stack pointer is 07h
we can change the default location by MOV SP,# XX
h
( RAM location 30h ā€“ 7Fh)
Prof. Nitin Ahire
27
ARCHITECTURE OF 8051
SFR (Special Function Registers) :
SFR registers are placed in the address space
immediately above the 128 bytes of RAM,
from address 80h to FF h
The SFR memory consists of important
registers like A,B,PSW,PCON,TCON,TMOD etc
some registers are bit addressable while
remaining are byte addressable.
Prof. Nitin Ahire
28
SFR (SPECIAL FUNCTION REGISTERS)
Prof. Nitin Ahire
29
ARCHITECTURE OF 8051
Some of the address i.e. locations in between
80h to FF h are not used if we try to used, then
we may get the unpredictable result like data
lost
The PC is not the part of SFR the PC does not
have an internal RAM address.
Prof. Nitin Ahire
30
Prof. Nitin Ahire
31
A
80
81
82
87
90
FF
F0
E0
83
B
P0
SP
DPL
DPH
PCON
P1
PSWD0
Address SFR Registers
d7d5 d5 d4 d3 d2 d1d0
d7d5 d5 d4 d3 d2 d1d0
HOW STACK ARE ACCESSED IN THE 8051
Pushing data on to the stack
Show the stack and stack pointer for the following
Assume default stack area
MOV R6,#25H ; copy number 25 in R6
MOV R1,#12H ; copy number 12 in R1
MOV R4,#0F3H ; copy number F3 in R4
PUSH 6
PUSH 1
PUSH 4
Prof. Nitin Ahire
32
PUSH & POP
Solution:
Prof. Nitin Ahire
33
08
09
0A
0B
Start SP = 07
2508
09
0A
0B
SP = 08
25
12
08
09
0A
0B
SP = 09
25
F3
12
08
09
0A
0B
SP = 0A
After PUSH 6 After PUSH 1 After PUSH 4
PUSH & POP
Popping from the stack
Examining the stack, show the content of the
registers and SP after execution of the following
instruction
POP 3 ; POP stack into R3
POP 5 ; POP stack into R5
POP 2 ;POP stack into R2
Prof. Nitin Ahire
34
PUSH & POP
Solutions
Prof. Nitin Ahire
35
6C
54
F9
76
08
09
0A
0B
Start SP = 0B
6C
F9
76
08
09
0A
0B
SP = 0A
6C
76
08
09
0A
0B
SP = 09
6C08
09
0A
0B
SP = 08
R3=54
After POP 5 After POP 2
After POP 3
R5=F9 R2=76
PIN DESCRIPTION OF THE 8051
8051 family members come in different
package, such as DIP (dual in line package),
QFP (quad flat package), and LLC (leadless chip
carrier)
Some companies provide a 20 pin version of
8051 with reduced numbers of I/O ports
Majority of developers use the 40-pin DIP
package chip.
Prof. Nitin Ahire
36
Prof. Nitin Ahire
37
Pin Description of thePin Description of the 80518051
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
40
39
38
37
36
35
34
33
32
31
30
29
28
27
26
25
24
23
22
21
P1.0
P1.1
P1.2
P1.3
P1.4
P1.5
P1.6
P1.7
RST
(RXD)P3.0
(TXD)P3.1
(T0)P3.4
(T1)P3.5
XTAL2
XTAL1
GND
(INT0)P3.2
(INT1)P3.3
(RD)P3.7
(WR)P3.6
Vcc
P0.0(AD0)
P0.1(AD1)
P0.2(AD2)
P0.3(AD3)
P0.4(AD4)
P0.5(AD5)
P0.6(AD6)
P0.7(AD7)
EA/VPP
ALE/PROG
PSEN
P2.7(A15)
P2.6(A14)
P2.5(A13)
P2.4(A12)
P2.3(A11)
P2.2(A10)
P2.1(A9)
P2.0(A8)
8051
(8031)
Prof. Nitin Ahire
38
Figure (a). XTAL Connection toFigure (a). XTAL Connection to 80518051
C2
30pF
C1
30pF
XTAL2
XTAL1
GND
Using a quartz crystal oscillator ( operating freq range 1MHZ to 16 MHZ )
We can observe the frequency on the XTAL2 pin.
PINS OF 8051ļ¼ˆ2/4ļ¼‰
RSTļ¼ˆpin 9ļ¼‰ Reset
It is an input pin and is active highļ¼ˆ normally lowļ¼‰
The high pulse must be high at least 2 machine cycles.
If crystal freq=16 Mhz then find the machine cycle
sol: 16MHz/12=1.33MHz
MC = 1/ 1.33Mhz =0.75 microsec
If crystal freq=11.0592 Mhz then find the machine
cycle
sol: 11.0592MHz/12=921.6KHz
MC = 1/ 921.6Khz =1.085 microsec
Time to execute one cycle instruction e.g. ADD A,R1
Prof. Nitin Ahire
39
It is a power-on reset.
Upon applying a high pulse to RST, the
microcontroller will reset and all values in registers
will be lost.
Reset values of some 8051 registers
Prof. Nitin Ahire
40
RegisterRegister Reset valueReset value
PCPC 00000000
ACCACC 0000
BB 0000
PSWPSW 0000
SPSP 0707
DTPRDTPR 00000000
41
Prof. Nitin Ahire
FIGURE. RESET WITH DEBOUNCE CIRCUIT
Prof. Nitin Ahire
42
30 pF
30 pF
8.2 K
10 uF
+
Vcc
11.0592 MHz
EA/VPP
X1
X2
RST
31
19
18
9
PINS OF 8051ļ¼ˆ3/4ļ¼‰
/EA pin 31ļ¼‰external access
There is no on-chip ROM in 8031 and 8032 .
The /EA pin is connected to GND to indicate the code
is stored externally.
For 8051, /EA pin is connected to Vcc.
ā€œ/ā€ means active low.
/PSENļ¼ˆpin 29ļ¼‰ program store enable
This is an output pin and is connected to the OE pin of
the external ROM.
Prof. Nitin Ahire
43
PINS OF 8051ļ¼ˆ4/4ļ¼‰
ALEļ¼ˆpin 30ļ¼‰ļ¼šaddress latch enable
It is an output pin and is active high.
8051 port 0 provides both address and data.
The ALE pin is used for de-multiplexing the address
and data by connecting to the G pin of the 74LS373
latch.
I/O port pins
The four ports P0, P1, P2, and P3.
Each port uses 8 pins.
All I/O pins are bi-directional..
Prof. Nitin Ahire
44
PINS OF I/O PORT
The 8051 has four I/O ports
Port 0 ļ¼ˆpins 32-39ļ¼‰ ļ¼šP0ļ¼ˆP0.0ļ½ž to P0.7ļ¼‰
Port 1ļ¼ˆpins 1-8ļ¼‰ ļ¼šP1ļ¼ˆP1.0ļ½ž to P1.7ļ¼‰
Port 2ļ¼ˆpins 21-28ļ¼‰ ļ¼šP2ļ¼ˆP2.0ļ½ž to P2.7ļ¼‰
Port 3ļ¼ˆpins 10-17ļ¼‰ ļ¼šP3ļ¼ˆP3.0ļ½ž to P3.7ļ¼‰
Each port has 8 pins.
Named P0.X ļ¼ˆX=0,1,...,7ļ¼‰, P1.X, P2.X, P3.X
P0.0 is the bit 0ļ¼ˆLSBļ¼‰of P0
P0.7 is the bit 7ļ¼ˆMSBļ¼‰of P0
These 8 bits form a byte.
Each port can be used as input or output (bi-direction).
Prof. Nitin Ahire
45
Prof. Nitin Ahire
46
A Pin of PortA Pin of Port 00
8051 IC
D Q
Clk Q
Read latch
Read pin
Write to latch
Internal CPU
bus
M1
P0.X
pinP1.X
TB1
TB2
ļ£µP1.x
PORT 0 WITH PULL-UP RESISTORS
Prof. Nitin Ahire
47
P0.0
P0.1
P0.2
P0.3
P0.4
P0.5
P0.6
P0.7
DS5000
8751
8951
Vcc
10 K
Port
0
PORT 3 ALTERNATE FUNCTIONS
Prof. Nitin Ahire
48
1717RDRDPP33..77
1616WRWRPP33..66
1515TT11PP33..55
1414TT00PP33..44
1313INTINT11PP33..33
1212INTINT00P3.2P3.2
1111TxDTxDPP33..11
1010RxDRxDPP33..00
PinPinFunctionFunctionPP33 BitBit
ļ£µ

More Related Content

What's hot

Microcontroller 8051 instruction set and assemble directives
Microcontroller 8051 instruction set and assemble directivesMicrocontroller 8051 instruction set and assemble directives
Microcontroller 8051 instruction set and assemble directivesNilesh Bhaskarrao Bahadure
Ā 
Multiplexer and demultiplexer applications.ppsx 3
Multiplexer and demultiplexer applications.ppsx 3Multiplexer and demultiplexer applications.ppsx 3
Multiplexer and demultiplexer applications.ppsx 3safia safreen
Ā 
TMS320C6X Architecture
TMS320C6X ArchitectureTMS320C6X Architecture
TMS320C6X ArchitectureShweta Tripathi
Ā 
8051 Timers / Counters
8051 Timers / Counters8051 Timers / Counters
8051 Timers / CountersPatricio Lima
Ā 
cathode ray tube
cathode ray tubecathode ray tube
cathode ray tubewasim liam
Ā 
Microcontroller 8051
Microcontroller 8051Microcontroller 8051
Microcontroller 8051guest70d48b1
Ā 
8051 Microcontroller ppt
8051 Microcontroller ppt8051 Microcontroller ppt
8051 Microcontroller pptRahul Kumar
Ā 
Architecture of 8085 microprocessor
Architecture of 8085 microprocessorArchitecture of 8085 microprocessor
Architecture of 8085 microprocessorAMAN SRIVASTAVA
Ā 
MICROCONTROLLER 8051- Architecture & Pin Configuration
MICROCONTROLLER 8051- Architecture & Pin Configuration MICROCONTROLLER 8051- Architecture & Pin Configuration
MICROCONTROLLER 8051- Architecture & Pin Configuration AKHIL MADANKAR
Ā 
Programming 8051 Timers
Programming 8051 Timers Programming 8051 Timers
Programming 8051 Timers ViVek Patel
Ā 
PART -1 TRAFFIC LIGHT CONTROL USING 8085
PART -1 TRAFFIC LIGHT CONTROL USING 8085PART -1 TRAFFIC LIGHT CONTROL USING 8085
PART -1 TRAFFIC LIGHT CONTROL USING 8085Subash Sambath Kumar
Ā 
DAC Interfacing with 8051.pdf
DAC Interfacing with 8051.pdfDAC Interfacing with 8051.pdf
DAC Interfacing with 8051.pdfSrikrishna Thota
Ā 
Unit step function
Unit step functionUnit step function
Unit step functionKifaru Malale
Ā 
Proteus Circuits Design and Simulation - Examples and Projects
Proteus Circuits Design and Simulation - Examples and ProjectsProteus Circuits Design and Simulation - Examples and Projects
Proteus Circuits Design and Simulation - Examples and ProjectsHassan Khan
Ā 
I/O port programming in 8051
I/O port programming in 8051I/O port programming in 8051
I/O port programming in 8051ssuser3a47cb
Ā 
PIC timer programming
PIC timer programmingPIC timer programming
PIC timer programmingAkash Puri
Ā 
8051 microcontroller features
8051 microcontroller features8051 microcontroller features
8051 microcontroller featuresTech_MX
Ā 
Embedded system in washing machine
Embedded system in washing machineEmbedded system in washing machine
Embedded system in washing machineVignesh Suresh
Ā 
Microcontroller 8051
Microcontroller 8051Microcontroller 8051
Microcontroller 8051Sadiq Rahim
Ā 

What's hot (20)

Microcontroller 8051 instruction set and assemble directives
Microcontroller 8051 instruction set and assemble directivesMicrocontroller 8051 instruction set and assemble directives
Microcontroller 8051 instruction set and assemble directives
Ā 
Multiplexer and demultiplexer applications.ppsx 3
Multiplexer and demultiplexer applications.ppsx 3Multiplexer and demultiplexer applications.ppsx 3
Multiplexer and demultiplexer applications.ppsx 3
Ā 
TMS320C6X Architecture
TMS320C6X ArchitectureTMS320C6X Architecture
TMS320C6X Architecture
Ā 
8051 Timers / Counters
8051 Timers / Counters8051 Timers / Counters
8051 Timers / Counters
Ā 
cathode ray tube
cathode ray tubecathode ray tube
cathode ray tube
Ā 
Microcontroller 8051
Microcontroller 8051Microcontroller 8051
Microcontroller 8051
Ā 
8051 Microcontroller ppt
8051 Microcontroller ppt8051 Microcontroller ppt
8051 Microcontroller ppt
Ā 
Architecture of 8085 microprocessor
Architecture of 8085 microprocessorArchitecture of 8085 microprocessor
Architecture of 8085 microprocessor
Ā 
MICROCONTROLLER 8051- Architecture & Pin Configuration
MICROCONTROLLER 8051- Architecture & Pin Configuration MICROCONTROLLER 8051- Architecture & Pin Configuration
MICROCONTROLLER 8051- Architecture & Pin Configuration
Ā 
Programming 8051 Timers
Programming 8051 Timers Programming 8051 Timers
Programming 8051 Timers
Ā 
PART -1 TRAFFIC LIGHT CONTROL USING 8085
PART -1 TRAFFIC LIGHT CONTROL USING 8085PART -1 TRAFFIC LIGHT CONTROL USING 8085
PART -1 TRAFFIC LIGHT CONTROL USING 8085
Ā 
DAC Interfacing with 8051.pdf
DAC Interfacing with 8051.pdfDAC Interfacing with 8051.pdf
DAC Interfacing with 8051.pdf
Ā 
Unit step function
Unit step functionUnit step function
Unit step function
Ā 
Proteus Circuits Design and Simulation - Examples and Projects
Proteus Circuits Design and Simulation - Examples and ProjectsProteus Circuits Design and Simulation - Examples and Projects
Proteus Circuits Design and Simulation - Examples and Projects
Ā 
pic 18
pic 18pic 18
pic 18
Ā 
I/O port programming in 8051
I/O port programming in 8051I/O port programming in 8051
I/O port programming in 8051
Ā 
PIC timer programming
PIC timer programmingPIC timer programming
PIC timer programming
Ā 
8051 microcontroller features
8051 microcontroller features8051 microcontroller features
8051 microcontroller features
Ā 
Embedded system in washing machine
Embedded system in washing machineEmbedded system in washing machine
Embedded system in washing machine
Ā 
Microcontroller 8051
Microcontroller 8051Microcontroller 8051
Microcontroller 8051
Ā 

Similar to 8051 Microcontroller

Microcontroladores: tutorial de microcontrolador 8051
Microcontroladores: tutorial de microcontrolador 8051Microcontroladores: tutorial de microcontrolador 8051
Microcontroladores: tutorial de microcontrolador 8051SANTIAGO PABLO ALBERTO
Ā 
Unit1 5-mpi-lecture-notes
Unit1 5-mpi-lecture-notesUnit1 5-mpi-lecture-notes
Unit1 5-mpi-lecture-notesPrabhu Mali
Ā 
Microcontroller-8051.ppt
Microcontroller-8051.pptMicrocontroller-8051.ppt
Microcontroller-8051.pptKalaiSelvan911913
Ā 
8051 Architecture and PIN Configuration.pdf
8051 Architecture and PIN Configuration.pdf8051 Architecture and PIN Configuration.pdf
8051 Architecture and PIN Configuration.pdfSrikrishna Thota
Ā 
B sc e5.2 mp unit 4 mc-8051
B sc e5.2 mp unit 4 mc-8051B sc e5.2 mp unit 4 mc-8051
B sc e5.2 mp unit 4 mc-8051MahiboobAliMulla
Ā 
8051 microcontroller
8051 microcontroller 8051 microcontroller
8051 microcontroller nitugatkal
Ā 
Advanced Microprocessor 6.pptx
Advanced Microprocessor 6.pptxAdvanced Microprocessor 6.pptx
Advanced Microprocessor 6.pptxShanDimantha1
Ā 
Mmai ppt
Mmai pptMmai ppt
Mmai pptGIT
Ā 
Specialist officer it study material on organization of intel 8085 microproce...
Specialist officer it study material on organization of intel 8085 microproce...Specialist officer it study material on organization of intel 8085 microproce...
Specialist officer it study material on organization of intel 8085 microproce...Tamal Kumar Das
Ā 
Ashish microcontroller 8051
Ashish microcontroller 8051Ashish microcontroller 8051
Ashish microcontroller 8051ASHISH RAJ
Ā 
Architecture of the Intel 8051 Microcontroller
Architecture of the Intel 8051 MicrocontrollerArchitecture of the Intel 8051 Microcontroller
Architecture of the Intel 8051 MicrocontrollerSudhanshu Janwadkar
Ā 
Unit 4.pptx
Unit 4.pptxUnit 4.pptx
Unit 4.pptxBLACKSPAROW
Ā 
Fundamentals of Microcontroller 8051 by Dr. Jogade S M, Assistant Professor, ...
Fundamentals of Microcontroller 8051 by Dr. Jogade S M, Assistant Professor, ...Fundamentals of Microcontroller 8051 by Dr. Jogade S M, Assistant Professor, ...
Fundamentals of Microcontroller 8051 by Dr. Jogade S M, Assistant Professor, ...sangeeta jogade
Ā 
Embedded System
Embedded SystemEmbedded System
Embedded SystemRicha Arora
Ā 
8051 microcontroller
8051 microcontroller8051 microcontroller
8051 microcontrollerazhagujaisudhan
Ā 
Live B tech Projects & Industrial Training @Technogroovy
Live B tech Projects & Industrial Training @Technogroovy Live B tech Projects & Industrial Training @Technogroovy
Live B tech Projects & Industrial Training @Technogroovy Technogroovy India
Ā 

Similar to 8051 Microcontroller (20)

Microcontroladores: tutorial de microcontrolador 8051
Microcontroladores: tutorial de microcontrolador 8051Microcontroladores: tutorial de microcontrolador 8051
Microcontroladores: tutorial de microcontrolador 8051
Ā 
Unit1 5-mpi-lecture-notes
Unit1 5-mpi-lecture-notesUnit1 5-mpi-lecture-notes
Unit1 5-mpi-lecture-notes
Ā 
Micro controller
Micro controllerMicro controller
Micro controller
Ā 
Microcontroller-8051.ppt
Microcontroller-8051.pptMicrocontroller-8051.ppt
Microcontroller-8051.ppt
Ā 
8051 Architecture and PIN Configuration.pdf
8051 Architecture and PIN Configuration.pdf8051 Architecture and PIN Configuration.pdf
8051 Architecture and PIN Configuration.pdf
Ā 
B sc e5.2 mp unit 4 mc-8051
B sc e5.2 mp unit 4 mc-8051B sc e5.2 mp unit 4 mc-8051
B sc e5.2 mp unit 4 mc-8051
Ā 
8051
80518051
8051
Ā 
8051 microcontroller
8051 microcontroller 8051 microcontroller
8051 microcontroller
Ā 
Advanced Microprocessor 6.pptx
Advanced Microprocessor 6.pptxAdvanced Microprocessor 6.pptx
Advanced Microprocessor 6.pptx
Ā 
Mmai ppt
Mmai pptMmai ppt
Mmai ppt
Ā 
Specialist officer it study material on organization of intel 8085 microproce...
Specialist officer it study material on organization of intel 8085 microproce...Specialist officer it study material on organization of intel 8085 microproce...
Specialist officer it study material on organization of intel 8085 microproce...
Ā 
Ashish microcontroller 8051
Ashish microcontroller 8051Ashish microcontroller 8051
Ashish microcontroller 8051
Ā 
Architecture of the Intel 8051 Microcontroller
Architecture of the Intel 8051 MicrocontrollerArchitecture of the Intel 8051 Microcontroller
Architecture of the Intel 8051 Microcontroller
Ā 
Unit 4.pptx
Unit 4.pptxUnit 4.pptx
Unit 4.pptx
Ā 
Fundamentals of Microcontroller 8051 by Dr. Jogade S M, Assistant Professor, ...
Fundamentals of Microcontroller 8051 by Dr. Jogade S M, Assistant Professor, ...Fundamentals of Microcontroller 8051 by Dr. Jogade S M, Assistant Professor, ...
Fundamentals of Microcontroller 8051 by Dr. Jogade S M, Assistant Professor, ...
Ā 
Embedded System
Embedded SystemEmbedded System
Embedded System
Ā 
8051 microcontroller
8051 microcontroller8051 microcontroller
8051 microcontroller
Ā 
Live B tech Projects & Industrial Training @Technogroovy
Live B tech Projects & Industrial Training @Technogroovy Live B tech Projects & Industrial Training @Technogroovy
Live B tech Projects & Industrial Training @Technogroovy
Ā 
Microcontroller 8051 basics (part I)
Microcontroller 8051 basics (part I)Microcontroller 8051 basics (part I)
Microcontroller 8051 basics (part I)
Ā 
MICROCONTROLLER - INTEL 8051
MICROCONTROLLER - INTEL 8051MICROCONTROLLER - INTEL 8051
MICROCONTROLLER - INTEL 8051
Ā 

More from Nitin Ahire

Microprocessor 8086 8087_nitin ahire
Microprocessor 8086 8087_nitin ahireMicroprocessor 8086 8087_nitin ahire
Microprocessor 8086 8087_nitin ahireNitin Ahire
Ā 
8085 ppi 8255 and 8155
8085 ppi 8255 and 81558085 ppi 8255 and 8155
8085 ppi 8255 and 8155Nitin Ahire
Ā 
Microprocessor
MicroprocessorMicroprocessor
MicroprocessorNitin Ahire
Ā 
Addressing mode of 8051
Addressing mode of 8051Addressing mode of 8051
Addressing mode of 8051Nitin Ahire
Ā 
8051 singed number concept [compatibility mode]
8051 singed  number concept [compatibility mode]8051 singed  number concept [compatibility mode]
8051 singed number concept [compatibility mode]Nitin Ahire
Ā 
8051 micro controllers Instruction set
8051 micro controllers Instruction set 8051 micro controllers Instruction set
8051 micro controllers Instruction set Nitin Ahire
Ā 
8051 (microcontroller)class1
8051 (microcontroller)class18051 (microcontroller)class1
8051 (microcontroller)class1Nitin Ahire
Ā 
Serial communication in 8085
Serial communication in 8085Serial communication in 8085
Serial communication in 8085Nitin Ahire
Ā 
Interfacing of io device to 8085
Interfacing of io device to 8085Interfacing of io device to 8085
Interfacing of io device to 8085Nitin Ahire
Ā 
Interrupt of 8085
Interrupt of 8085Interrupt of 8085
Interrupt of 8085Nitin Ahire
Ā 

More from Nitin Ahire (10)

Microprocessor 8086 8087_nitin ahire
Microprocessor 8086 8087_nitin ahireMicroprocessor 8086 8087_nitin ahire
Microprocessor 8086 8087_nitin ahire
Ā 
8085 ppi 8255 and 8155
8085 ppi 8255 and 81558085 ppi 8255 and 8155
8085 ppi 8255 and 8155
Ā 
Microprocessor
MicroprocessorMicroprocessor
Microprocessor
Ā 
Addressing mode of 8051
Addressing mode of 8051Addressing mode of 8051
Addressing mode of 8051
Ā 
8051 singed number concept [compatibility mode]
8051 singed  number concept [compatibility mode]8051 singed  number concept [compatibility mode]
8051 singed number concept [compatibility mode]
Ā 
8051 micro controllers Instruction set
8051 micro controllers Instruction set 8051 micro controllers Instruction set
8051 micro controllers Instruction set
Ā 
8051 (microcontroller)class1
8051 (microcontroller)class18051 (microcontroller)class1
8051 (microcontroller)class1
Ā 
Serial communication in 8085
Serial communication in 8085Serial communication in 8085
Serial communication in 8085
Ā 
Interfacing of io device to 8085
Interfacing of io device to 8085Interfacing of io device to 8085
Interfacing of io device to 8085
Ā 
Interrupt of 8085
Interrupt of 8085Interrupt of 8085
Interrupt of 8085
Ā 

Recently uploaded

APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
Ā 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and usesDevarapalliHaritha
Ā 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
Ā 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
Ā 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
Ā 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
Ā 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
Ā 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .Satyam Kumar
Ā 
šŸ”9953056974šŸ”!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
šŸ”9953056974šŸ”!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...šŸ”9953056974šŸ”!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
šŸ”9953056974šŸ”!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...9953056974 Low Rate Call Girls In Saket, Delhi NCR
Ā 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
Ā 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2RajaP95
Ā 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
Ā 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
Ā 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
Ā 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
Ā 

Recently uploaded (20)

APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
Ā 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and uses
Ā 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Ā 
young call girls in Rajiv ChowkšŸ” 9953056974 šŸ” Delhi escort Service
young call girls in Rajiv ChowkšŸ” 9953056974 šŸ” Delhi escort Serviceyoung call girls in Rajiv ChowkšŸ” 9953056974 šŸ” Delhi escort Service
young call girls in Rajiv ChowkšŸ” 9953056974 šŸ” Delhi escort Service
Ā 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
Ā 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
Ā 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
Ā 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
Ā 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
Ā 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .
Ā 
šŸ”9953056974šŸ”!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
šŸ”9953056974šŸ”!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...šŸ”9953056974šŸ”!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
šŸ”9953056974šŸ”!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
Ā 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
Ā 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
Ā 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
Ā 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Ā 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Ā 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
Ā 
Design and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdfDesign and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdf
Ā 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
Ā 
ā˜… CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
ā˜… CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCRā˜… CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
ā˜… CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
Ā 

8051 Microcontroller

  • 1. 8051 (MICROCONTROLLER) Nitin Ahire XIE, Mahim Prof. Nitin Ahire 1
  • 2. MICROCONTROLLER What is a microcontroller ? Basically a device which integrates a number of components of a microprocessor system on to a single chip, only need to supplied power and clocking. Microcontroller combines on the same chip 1) The CPU core 2) I/O Ports 3) Memory 4) Timer Prof. Nitin Ahire 2
  • 3. HISTORY In 1981, Intel Corporation introduced an 8 bit microcontroller called 8051. It was also referred to as ā€œ system on chipā€ The 8051 is the original member of MCS-51 family Other members of 8051 8031, 8052, 8751, AT89C51, etc Prof. Nitin Ahire 3
  • 4. Prof. Nitin Ahire 4 Microprocessor CPU is stand-alone, RAM, ROM, I/O, timer are separate Designer can decide on the amount of ROM, RAM and I/O ports. Expansive General-purpose Microcontroller ā€¢ CPU, RAM, ROM, I/O and timer are all on a single chip ā€¢ Fix amount of on-chip ROM, RAM, I/O ports ā€¢ For applications in which cost, power and space are critical ā€¢ Single-purpose Microprocessor vs. Microcontroller
  • 5. CHOOSING A MICROCONTROLLER Computing needs Speed, packaging, power consumption, RAM, ROM, I/O pins, timers, upgrade to high performance or low-power versions, cost etc Software development tools Assembler, debugger, C compiler, technical support Availability & source Prof. Nitin Ahire 5
  • 6. Prof. Nitin Ahire 6 Microcontroller vs.Microcontroller vs. MicroprocessorsMicroprocessors
  • 7. Prof. Nitin Ahire 7 An embedded product uses a microcontroller (microprocessor) to do one (single) task only. Embedded system means the processor is embedded into that application. In an embedded system, there is only one application software that is typically burned into ROM. Exampleļ¼šprinter, keyboard, video game player Embedded System
  • 8. COMPANIES PRODUCING 8051 Table :Some Companies Producing a Member ofTable :Some Companies Producing a Member ofTable :Some Companies Producing a Member ofTable :Some Companies Producing a Member of the 8051 Familythe 8051 Familythe 8051 Familythe 8051 Family Company Web Site Intel www.intel.com/design/mcs51 Atmel www.atmel.com Philips/Signetics www.semiconductors.philips.com Siemens www.sci.siemens.com Dallas Semiconductor www.dalsemi.com 8 Prof. Nitin Ahire
  • 9. 8051 FAMILY Table :Comparison of 8051 Family MembersTable :Comparison of 8051 Family MembersTable :Comparison of 8051 Family MembersTable :Comparison of 8051 Family Members Prof. Nitin Ahire 9 FeatureFeature 80518051 80528052 80318031 ROM (on chip program space in bytes)ROM (on chip program space in bytes) 4K4K 8K8K 0K0K RAM (bytes)RAM (bytes) 128128 256256 128128 TimersTimers 22 33 22 I/O pinsI/O pins 3232 3232 3232 Serial portSerial port 11 11 11 Interrupt sourcesInterrupt sources 66 88 66
  • 10. VARIOUS 8051 MICROCONTROLLERS 8031 microcontroller (ROM -Less) 8751 microcontroller UV-EPROM (20 minutes) AT89C51 from Atmel Corporation Flash (erase before write) DS5000 from Dallas Semiconductor NV-RAM (changed one byte at a time), RTC (real-time clock) OTP (one-time-programmable) version of 8051 8051 family from Philips AD, DA, extended I/O, OTP and flash Prof. Nitin Ahire 10
  • 11. MAJOR 8-BIT MICROCONTROLLERS. They are : 1)Motorolaā€™s 6811, 2)Intelā€™s 8051, 3)Zilog Z8, and 4)PIC 16X from Microchip Technology. Each of the above microcontrollers has unique instruction set and register set; there fore they are not compatible with each other. Program written for one will not run on the others Prof. Nitin Ahire 11
  • 12. FEATURE OF 8051 The 8051 is 8 ā€“ bit microcontroller. There are 16 bit -address lines and 8 ā€“bit data lines. On chip Program memory ROM 4 KB On chip Data memory RAM 128 byte 32 bidirectional I/O lines arranged as four 8-bit port ( port 0 ā€“ port 3) 2- sixteen bit Timer/Counter ( Timer 0 and Timer 1) Four register Banks ( Bank 0- Bank 3) Direct bit and byte addressability Prof. Nitin Ahire 12
  • 13. INSIDE 8051 MICROCONTROLLER Introduced by Intel in 1981 13 Prof. Nitin Ahire
  • 15. ARCHITECTURE OF 8051 Accumulator : It is an 8 ā€“ bit register used for arithmetic and logical operation to accumulate the result. Several function like rotate, swap etc apply on the accumulator B register: It is use with A register for multiplication and division for other instruction it is treated as scratch pad register. Prof. Nitin Ahire 15
  • 16. ARCHITECTURE OF 8051 ALU : The ALU can perform arithmetic and logical operation on 8-bit data. Like add, sub, mul, div or AND or OR ,compliment, etc. Program counter (PC) : It is a 16 ā€“bit register. It is used to hold the address of an instruction (program) stored in the memory. Program status word ( PSW ): Many instruction affect the status flags in order to address these flags conveniently they can be grouped to from PSW Prof. Nitin Ahire 16
  • 17. 8051 FLAG BITS PSW (Program status word) register It is an 8-bit register It is a bit addressable register CY- Carry flag PSW.7 AC- Auxiliary carry PSW.6 FO ā€“ Available to the user for general purpose RS0-RS1- Register Bank selector (PSW.3, PSW.4) Prof. Nitin Ahire 17 CY AC -OVRS0RS1FO P
  • 18. 8051 FLAG BITS OV- overflow Flag PSW.2 P- Parity Flag PSW.0 RS1 RS0 Register Bank Address 0 0 Bank 0 00h-07h 0 1 Bank 1 08h- 0fh 1 0 Bank2 10h-17h 1 1 Bank3 18h-1Fh Prof. Nitin Ahire 18
  • 19. 8051 FLAG BITS CY- This flag is set whenever there is carry from d7 bit. This flag bit is affected after addition or subtraction. It can also set 1 or 0 directly by instruction such as ā€œSETB Cā€ and ā€œ CLR Cā€ AC- If there is carry from D3 to D4 during an ADD or SUB operation, this bit is set; otherwise it is cleared ( used in BCD arithmetic) P ā€“ The Parity Flag reflects the number of 1s in the A ( accumulator) . If A contains odd number of 1s, then P=1 and A contains even number of 1s, then P=0 Prof. Nitin Ahire 19
  • 20. 8051 FLAG BITS OV ā€“ this flag is set whenever the result of singed number operation is too large, causing the high-order bit to overflow into the sign bit ( It is used only in signed operation) Prof. Nitin Ahire 20
  • 21. 8051 REGISTER BANKS AND STACK The 8051 has a total 128 bytes of RAM. The 128 bytes of RAM in side the 8051 are assigned address 00 to 7Fh. The 128 bytes are divided into three different groups as follows 1) A total of 32323232 bytes from locations 00 to 1F00 to 1F00 to 1F00 to 1F hex are set aside for register banks and the stack. 2) A total of 16161616 bytes from locations 20h to 2Fh20h to 2Fh20h to 2Fh20h to 2Fh are aside for bit addressable read/write memory 3) A total 80808080 bytes from location 30h to 7Fh30h to 7Fh30h to 7Fh30h to 7Fh are used for read and write storage normally called ā€˜scratch padā€™ RAM Prof. Nitin Ahire 21
  • 22. RAM memory space allocation in theRAM memory space allocation in theRAM memory space allocation in theRAM memory space allocation in the 8051805180518051 Prof. Nitin Ahire 22 7FH 30H 2FH 20H 1FH 17H 10H 0FH 07H 08H 18H 00H Register Bank 0 Register Bank 1 Register Bank 2 Register Bank 3 Bit-Addressable RAM Scratch pad RAM
  • 23. Prof. Nitin Ahire 23 Bank 0 Bank 2 Bank 1 Bank 3 0001020304050607 08090A0B0C0D0E0F 78797A7B7C7D7E7F 00 1F 20 2F 30 7F 4 Reg. BANK 8 bytes each 32 bytes Bit addressable RAM 16 bytes ( 80 bits) General purpose RAM 80 bytes Internal RAM memory organization
  • 24. REGISTER BANKS IN 8051 The 32 bytes of RAM are divided into 4 banks of register in which each bank has 8 registers, R0-R7. Bank 0 Bank 1 Bank 2 Bank3 Prof. Nitin Ahire 24 R7 R6 R5 R4 R3 R2 R1 R0 R7 R6 R5 R4 R3 R2 R1 R0 R7 R6 R5 R4 R3 R2 R1 R0 R7 R6 R5 R4 R3 R2 R1 R0
  • 25. STACK IN THE 8051 The register used to access the stack is called SP (stack pointer) register. The stack pointer in the 8051 is only 8 bits wide, which means that it can take value 00 to FFH. When 8051 powered up, the SP register contains value 07. Prof. Nitin Ahire 25 7FH 30H 2FH 20H 1FH 17H 10H 0FH 07H 08H 18H 00H Register Bank 0 (Stack) Register Bank 1 Register Bank 2 Register Bank 3 Bit-Addressable RAM Scratch pad RAM
  • 26. ARCHITECTURE OF 8051 DPTR: The data pointer is 16 bit register It is used to hold the address of data in the memory. It can be accessed separately as lower 8 bit (DPL) and higher 8 bit (DPH) The DPTR does not have a single internal address instead DPH and DPL are each assigned a separate address. Prof. Nitin Ahire 26
  • 27. ARCHITECTURE OF 8051 Stack and Stack Pointer : The stack is the reserved area of the memory in the RAM where temporary information may be stored. an 8 ā€“ bit stack pointer is used to hold the address of most recent stack entry. Generally it is called top of the stack It work on LIFO or FILO principle By default location of stack pointer is 07h we can change the default location by MOV SP,# XX h ( RAM location 30h ā€“ 7Fh) Prof. Nitin Ahire 27
  • 28. ARCHITECTURE OF 8051 SFR (Special Function Registers) : SFR registers are placed in the address space immediately above the 128 bytes of RAM, from address 80h to FF h The SFR memory consists of important registers like A,B,PSW,PCON,TCON,TMOD etc some registers are bit addressable while remaining are byte addressable. Prof. Nitin Ahire 28
  • 29. SFR (SPECIAL FUNCTION REGISTERS) Prof. Nitin Ahire 29
  • 30. ARCHITECTURE OF 8051 Some of the address i.e. locations in between 80h to FF h are not used if we try to used, then we may get the unpredictable result like data lost The PC is not the part of SFR the PC does not have an internal RAM address. Prof. Nitin Ahire 30
  • 31. Prof. Nitin Ahire 31 A 80 81 82 87 90 FF F0 E0 83 B P0 SP DPL DPH PCON P1 PSWD0 Address SFR Registers d7d5 d5 d4 d3 d2 d1d0 d7d5 d5 d4 d3 d2 d1d0
  • 32. HOW STACK ARE ACCESSED IN THE 8051 Pushing data on to the stack Show the stack and stack pointer for the following Assume default stack area MOV R6,#25H ; copy number 25 in R6 MOV R1,#12H ; copy number 12 in R1 MOV R4,#0F3H ; copy number F3 in R4 PUSH 6 PUSH 1 PUSH 4 Prof. Nitin Ahire 32
  • 33. PUSH & POP Solution: Prof. Nitin Ahire 33 08 09 0A 0B Start SP = 07 2508 09 0A 0B SP = 08 25 12 08 09 0A 0B SP = 09 25 F3 12 08 09 0A 0B SP = 0A After PUSH 6 After PUSH 1 After PUSH 4
  • 34. PUSH & POP Popping from the stack Examining the stack, show the content of the registers and SP after execution of the following instruction POP 3 ; POP stack into R3 POP 5 ; POP stack into R5 POP 2 ;POP stack into R2 Prof. Nitin Ahire 34
  • 35. PUSH & POP Solutions Prof. Nitin Ahire 35 6C 54 F9 76 08 09 0A 0B Start SP = 0B 6C F9 76 08 09 0A 0B SP = 0A 6C 76 08 09 0A 0B SP = 09 6C08 09 0A 0B SP = 08 R3=54 After POP 5 After POP 2 After POP 3 R5=F9 R2=76
  • 36. PIN DESCRIPTION OF THE 8051 8051 family members come in different package, such as DIP (dual in line package), QFP (quad flat package), and LLC (leadless chip carrier) Some companies provide a 20 pin version of 8051 with reduced numbers of I/O ports Majority of developers use the 40-pin DIP package chip. Prof. Nitin Ahire 36
  • 37. Prof. Nitin Ahire 37 Pin Description of thePin Description of the 80518051 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 P1.0 P1.1 P1.2 P1.3 P1.4 P1.5 P1.6 P1.7 RST (RXD)P3.0 (TXD)P3.1 (T0)P3.4 (T1)P3.5 XTAL2 XTAL1 GND (INT0)P3.2 (INT1)P3.3 (RD)P3.7 (WR)P3.6 Vcc P0.0(AD0) P0.1(AD1) P0.2(AD2) P0.3(AD3) P0.4(AD4) P0.5(AD5) P0.6(AD6) P0.7(AD7) EA/VPP ALE/PROG PSEN P2.7(A15) P2.6(A14) P2.5(A13) P2.4(A12) P2.3(A11) P2.2(A10) P2.1(A9) P2.0(A8) 8051 (8031)
  • 38. Prof. Nitin Ahire 38 Figure (a). XTAL Connection toFigure (a). XTAL Connection to 80518051 C2 30pF C1 30pF XTAL2 XTAL1 GND Using a quartz crystal oscillator ( operating freq range 1MHZ to 16 MHZ ) We can observe the frequency on the XTAL2 pin.
  • 39. PINS OF 8051ļ¼ˆ2/4ļ¼‰ RSTļ¼ˆpin 9ļ¼‰ Reset It is an input pin and is active highļ¼ˆ normally lowļ¼‰ The high pulse must be high at least 2 machine cycles. If crystal freq=16 Mhz then find the machine cycle sol: 16MHz/12=1.33MHz MC = 1/ 1.33Mhz =0.75 microsec If crystal freq=11.0592 Mhz then find the machine cycle sol: 11.0592MHz/12=921.6KHz MC = 1/ 921.6Khz =1.085 microsec Time to execute one cycle instruction e.g. ADD A,R1 Prof. Nitin Ahire 39
  • 40. It is a power-on reset. Upon applying a high pulse to RST, the microcontroller will reset and all values in registers will be lost. Reset values of some 8051 registers Prof. Nitin Ahire 40
  • 41. RegisterRegister Reset valueReset value PCPC 00000000 ACCACC 0000 BB 0000 PSWPSW 0000 SPSP 0707 DTPRDTPR 00000000 41 Prof. Nitin Ahire
  • 42. FIGURE. RESET WITH DEBOUNCE CIRCUIT Prof. Nitin Ahire 42 30 pF 30 pF 8.2 K 10 uF + Vcc 11.0592 MHz EA/VPP X1 X2 RST 31 19 18 9
  • 43. PINS OF 8051ļ¼ˆ3/4ļ¼‰ /EA pin 31ļ¼‰external access There is no on-chip ROM in 8031 and 8032 . The /EA pin is connected to GND to indicate the code is stored externally. For 8051, /EA pin is connected to Vcc. ā€œ/ā€ means active low. /PSENļ¼ˆpin 29ļ¼‰ program store enable This is an output pin and is connected to the OE pin of the external ROM. Prof. Nitin Ahire 43
  • 44. PINS OF 8051ļ¼ˆ4/4ļ¼‰ ALEļ¼ˆpin 30ļ¼‰ļ¼šaddress latch enable It is an output pin and is active high. 8051 port 0 provides both address and data. The ALE pin is used for de-multiplexing the address and data by connecting to the G pin of the 74LS373 latch. I/O port pins The four ports P0, P1, P2, and P3. Each port uses 8 pins. All I/O pins are bi-directional.. Prof. Nitin Ahire 44
  • 45. PINS OF I/O PORT The 8051 has four I/O ports Port 0 ļ¼ˆpins 32-39ļ¼‰ ļ¼šP0ļ¼ˆP0.0ļ½ž to P0.7ļ¼‰ Port 1ļ¼ˆpins 1-8ļ¼‰ ļ¼šP1ļ¼ˆP1.0ļ½ž to P1.7ļ¼‰ Port 2ļ¼ˆpins 21-28ļ¼‰ ļ¼šP2ļ¼ˆP2.0ļ½ž to P2.7ļ¼‰ Port 3ļ¼ˆpins 10-17ļ¼‰ ļ¼šP3ļ¼ˆP3.0ļ½ž to P3.7ļ¼‰ Each port has 8 pins. Named P0.X ļ¼ˆX=0,1,...,7ļ¼‰, P1.X, P2.X, P3.X P0.0 is the bit 0ļ¼ˆLSBļ¼‰of P0 P0.7 is the bit 7ļ¼ˆMSBļ¼‰of P0 These 8 bits form a byte. Each port can be used as input or output (bi-direction). Prof. Nitin Ahire 45
  • 46. Prof. Nitin Ahire 46 A Pin of PortA Pin of Port 00 8051 IC D Q Clk Q Read latch Read pin Write to latch Internal CPU bus M1 P0.X pinP1.X TB1 TB2 ļ£µP1.x
  • 47. PORT 0 WITH PULL-UP RESISTORS Prof. Nitin Ahire 47 P0.0 P0.1 P0.2 P0.3 P0.4 P0.5 P0.6 P0.7 DS5000 8751 8951 Vcc 10 K Port 0
  • 48. PORT 3 ALTERNATE FUNCTIONS Prof. Nitin Ahire 48 1717RDRDPP33..77 1616WRWRPP33..66 1515TT11PP33..55 1414TT00PP33..44 1313INTINT11PP33..33 1212INTINT00P3.2P3.2 1111TxDTxDPP33..11 1010RxDRxDPP33..00 PinPinFunctionFunctionPP33 BitBit ļ£µ