Focused Question MPMC
Focused Question MPMC
PART - A
1
6. What is the function of program counter in 8085
microprocessor? (May-2013)
Program counter stores the address of the next instruction to be fetched. Thus it
is used as pointer to the instruction.
7. What is trap interrupt and its significance? (May-2012)
This interrupt is a non-maskable interrupt. It is unaffected by any mask or
interrupt enable. TRAP has the highest priority. TRAP interrupt is edge and level
triggered. This means that the TRAP must go high and remain high until it is
acknowledged. This avoids false triggering caused by noise and transients.
8. List the control and status signals of 8085 and mention its
need. (Dec-2012)
ALE (Address Latch Enable)
and (Read and Write)
IO/ , S0 S1
READY
9. Define the function of parity flag and zero flag in 8085. (May-2012)
Parity flag – Parity is defined by the number of one‟s present in the accumulator.
After an arithmetic or logical operation if the result has an even number of ones,
ie., even parity, the flag is set. If the parity is odd, flag is reset.
Zero flag – the zero flag sets if the result of operation in ALU is zero and flag
resets if result is non zero. The zero flag is also is also set if a certain register
content becomes zero following an increment or decrement operation of that
register.
10. To obtain a 320 ns clock, what should be the input clock frequency? What
is the frequency of clock signal at CLK OUT? (May-2014)
System clock frequency = 1/T = 1 / 320*10-9 = 3.125 MHz
Crystal clock frequency = 2* System clock frequency
= 2*3.125*106
= 6.25 MHz
The frequency of clock signal at CLK OUT= Crystal frequency/2
= 6.25/2
=3.125 MHz.
2
11. List the five interrupts pins available in the 8085.
(May-2010)
The five interrupt pins are
TRAP, RST 7.5, RST 6.5, RST 5.5, INTR.
12. Specify the size of data, address, and memory word and memory capacity
of 8085 microprocessor. (May-2011)
Size of data bus = 8-bits Size Size of address bus = 16-bits
of memory word = 8-bits Memory capacity = 64 Kbytes
13. What is interrupt? (May-2006, May-2009)
Interrupt is an external signal that causes a microprocessor to jump to a specific
subroutine.
14. How performance of a microprocessor is measured in terms of MIPS?
(June-2007)
The performance of a microprocessor is measured in terms of MIPS (Million
instructions per Second).
MIPS rate = 1/(Average time required for the execution of instruction * 106)
15. What are the different machine cycles in 8085 microprocessor? (May-2008)
Opcode fetch, Memory read, Memory write, I/O read, I/O write, Interrupt
acknowledge, Bus idle.
PART B
Address Bus:
The address bus is a group of 16 lines generally identified as A0 to A15. The address
bus is unidirectional and bits flow in one direction-from the MPU to peripheral
devices.The MPU uses the address bus to identify a peripheral or a memory (2 16 =
65,536) locations
Data Bus:
3
The data bus is a group of 8 lines used for data flow. These lines are bi-directional and
data flow in both directions between the MPU and memory and peripheral devices. The
MPU uses the data bus to transfer data.
Control Bus:
The control bus carries synchronization signals and providing timing signals.The MPU
generates specific control signals for every operation it performs.These signals are used
to identify a device type with which the MPU wants to communicate.
Registers of 8085:
The 8085 have six general-purpose registers to store 8-bit data during program execution.
These registers are identified as B, C, D, E, H, and L.They can be combined as
registerpairs-BC, DE, and HL-to perform some 16-bit operations.
Accumulator (A):
The accumulator is an 8-bit register that is part of the arithmetic/logic unit (ALU).This
register is used to store 8-bit data and to perform arithmetic and logical operations.The
result of an operation is stored in the accumulator.
Flags:
The microprocessor uses the 5 flags for testing the data conditions.They are Zero (Z),
Carry (CY), Sign (S), Parity (P), and Auxiliary Carry (AC) flags.The flagsare set or reset
according to the result of an operation.The bit position for the flags in flag register is,
4
Figure: Architecture of 8085 Microprocessor
1. Sign Flag (S): If D7 of the result is1, the sign flag is set. Otherwise it is
reset. D7 is reserved for indicating the sign;
If D7 is 1, the number will be viewed as negative number.
If D7 is 0, the number will be viewed as positive number.
2. Zero Flag (Z): If the result of arithmetic and logical operation is zero, then zero flag is
set. Otherwise it is reset.
3. Auxiliary Carry Flag (AC): If D3 generates any carry when doing any arithmetic and
logical operation, this flag is set. Otherwise it is reset.
5
4. Parity Flag (P): If the result of arithmetic and logical operation contains even number
of 1's then this flag will be set and if it is odd number of 1's it will be reset.
5. Carry Flag (CY):If any arithmetic and logical operation result any carry then carry
flag is set otherwise it is reset.
Temporary Register:
It is used to hold the data during the arithmetic and logical operations.
Instruction Register:
When an instruction is fetched from the memory, it is loaded in the instruction register.
Instruction Decoder:
6
It gets the instruction from the instruction register and decodes the instruction. It
identifies the instruction to be performed.
RD (Active low) and WR (Active low) are used to indicate whether the operation is
eading the data from memory or writing the data into memory respectively.
IO/M(Active low) is used to indicate whether the operation is belongs to the memory
or peripherals.
2.Draw the signal (pin diagram) configuration of 8085 and explain the purpose of
each signals. (Dec-2012)
8085 is a 40 pin IC, DIP package. The signals from the pins can be grouped as
follows
7
Direct Memory Access (DMA):
8
two. Since the basic operating timing frequency is 3 MHz, a 6 MHz crystal is
connected externally.
CLK (OUT):Clock Output is used as the system clock for peripheral and
devices interfaced with the microprocessor.
During the opcode fetch operation, in the first clock cycle, the lines deliver the
lower order address A0 - A7.
In the subsequent IO / memory, read / write clock cycle the lines are used as
data bus.
The CPU may read or write out data through these lines.
This signal helps to capture the lower order address presented on the
multiplexed address / data bus.
This indicates that the selected memory location or I/O device is to be read and
the data bus is ready for accepting data from the memory or I/O device.
9
WR (output, active low) - Write
This indicates that the data on the data bus is to be written into the selected
memory location or I/O device.
This status signal indicates that the read / write operation relates to whether the
memory or I/O device.
n
g.i
It goes high to indicate an I/O operation.
It goes low for memory operations.
rin
Status Signals:S1,S0
ee
It is used to know the type of current operation of the microprocessor.
gin
S1 S0 Operation Specified
0 0 Halt
En
They are the signals initiated by an external device to request the microprocessor
to do a particular task or work.
ww
1. TRAP
2. RST 7.5
3. RST 6.5
4. RST 5.5
5. INTR
10
TRAP interrupt is a nonmaskable restart interrupt. It is unaffected by any mask or
Interrupt Enable. It has the highest priority of any interrupt.
RESTART INTERRUPTS: These three inputs have the same timing as INTR. They
are RST 7.5,RST 6.5, RST 5.5
n
RST 7.5
g.i
RST 6.5
rin
RST 5.5
INTR Lowest
ee
On receipt of an interrupt, the microprocessor acknowledges the interrupt by the
gin
active low INTA (Interrupt Acknowledge) signal.
11
n
g.i
rin
ee
gin
En
Serial input data line The data on this line is loaded into accumulator bit 7
whenever a RIM instruction is executed.
SOD (output) - Serial Output Data
The output SOD is set or reset as specified by the SIM instruction.
These signals are used for serial communication.
12
Direct Memory Access (DMA):
HOLD :HOLD signal is generated by the DMA controller circuit. The I/O device
request the processor for the address/data bus for bulk data transfer.
HLDA:(HOLD ACKNOWLEDGE) On receipt of HOLD signal, the microprocessor
acknowledges the request by sending out HLDA signal and leaves out the control
of the buses. After the HLDA signal the DMA controller starts the direct transfer
of data.
n
g.i
READY (input)
rin
Memory and I/O devices will have slower response compared to
microprocessors.
ee
Before completing the present job such a slow peripheral may not be able to
handle further data or control signal from CPU.
gin
The processor sets the READY signal after completing the present job to access
the data.
En
The microprocessor enters into WAIT state while the READY pin is disabled.
arn
particular task or work. Mainly in the microprocessor based system the interrupts are
w.
used for data transfer between the peripheral and the microprocessor. When a
peripheral is ready for data transfer, it interrupts the processor by sending an
ww
appropriate signal to the interrupt pin of the processor. If the processor accepts the
interrupt then the processor suspends its current activity and executes an interrupt
service subroutine to complete the data transfer between the peripheral and processor.
After executing the interrupt service routine the processor resumes its current activity.
This type of data transfer scheme is called interrupt driven data transfer scheme.
13
Types of Interrupts :
The interrupts are classified into software interrupts and hardware interrupts.
SOFTWARE INTERRUPTS:
The software interrupts are program instructions. These instructions are inserted at
desired locations in a program. While running a program, lf a software interrupt
instruction is encountered, then the processor executes an interrupt service routine
(ISR).
n
The software interrupts of 8085 are RST 0, RST 1, RST 2, RST 3, RST 4, RST 5,
g.i
RST6 and RST7.
rin
All software interrupts of 8085 are vectored interrupts. The software interrupts cannot be
masked and they cannot be disabled. When the processor encounters the software
ee
instruction, it pushes the content of PC to stack. Then loads the Vector address in PC
and starts executing the ISR stored in this vector address. At the end of ISR, a return
gin
instruction – RET will be placed. When the RET instruction is executed, the processor
POP the content of stack to PC.
En
RST 0 0000H
RST 1 0008H
Le
RST 2 0010H
w.
RST 3 0018H
ww
RST 4 0020H
RST 5 0028H
RST 6 0030H
RST 7 0038H
14
HARDWARE INTERRUPTS:
The hardware interrupts are initiated by an external device by placing an appropriate
signal at the interrupt pin of the processor.The processor keeps on checking the
interrupt pins at the second T-state of last machine cycle of every instruction.If the
processor finds a valid interrupt signal and if the interrupt is unmasked and enabled,
then the processor accepts the interrupt.The acceptance of the interrupt is
acknowledged by sending an INTA signal to the interrupted device. The processor
saves the content of PC in stack and then loads the vector address of the interrupt in
n
PC.If the interrupt is non-vectored, then the interrupting device has to supply the
g.i
address of ISR when it receives INTA signal. It starts executing ISR in this address.At
rin
the end of ISR, a return instruction, RET will be placed.When the processor executes
the RET instruction, it POP the content of top of stack to PC. Thus the processor control
ee
returns to main program after servicing interrupt.
The hardware interrupts of 8085 are TRAP, RST 7.5, RST 6.5, RST 5.5 and INTR
gin
Further the interrupts may be classified into VECTORED and NON-VECTORED
INTERRUPTS.
En
VECTORED INTERRUPT:
arn
The TRAP, RST 7.5, RST 6.5 and RST 5.5 are vectored interrupts.
The vector addresses of hardware interrupts are given in the table.
w.
TRAP 0024H
15
RST 5.5 002CH
NON-VECTORED INTERRUPT:
In non-vectored interrupts the interrupted device should give the address of the interrupt
service routine (ISR).
The INTR is a non-vectored interrupt.
When a device interrupts through INTR, it has to supply the address of ISR after
n
receiving interrupt acknowledge signal.
g.i
TRIGGERING EDGE OF 8085 INTERRUPTS:
rin
The TRAP interrupt is edge and level sensitive.To initiate TRAP, the interrupt signal has
to make a low to high transition and then it has to remain high until the interrupt is
ee
recognized.The RST 7.5 interrupt is positive edge sensitive. To initiate the RST 7.5, the
gin
interrupt signal has to make a low to high transition and it need not remain high until it is
recognized.The RST 6.5, RST 5.5 and INTR are level sensitive interrupts.Hence for
these interrupts the interrupting signal should remain high, until it is recognized.
En
arn
Non-maskable Interrupts.
w.
Non-maskable Interrupts:
ww
Maskable Interrupts:
The interrupts which can be enabled or disabled are called Maskable Interrupts.
RST 7.5, RST 6.5, RST 5.5 and INTR are Maskable interrupt.
16
Masking is preventing the interrupt from disturbing the main program.When an interrupt
is masked the processor will not accept the interrupt signal.The interrupts can be
masked by executing SIM instruction. (SIM - Set InterruptMask).The status of maskable
interrupts can be read into accumulator by executing RIM instruction (RIM - Read
Interrupt Mask).All the hardware interrupts, except TRAP are disabled, when the
processor is resetted.They can also be disabled by executing DI instruction. (Dl-Disable
Interrupt).When an interrupt is disabled, it will not be accepted by the processor.To
enable the disabled interrupt, the processor has to execute El instruction (El-Enable
n
Interrupt).
g.i
rin
INTERRUPT PRIORITY:
The order in which the interrupt has to be serviced is called Interrupt Priority.The priority
order of the 8085 interrupt is
ee
gin
Interrupt Interrupt Priority
TRAP 1
En
RST 7.5 2
arn
RST 6.5 3
Le
RST 5.5 4
INTR 5
w.
ww
17
IMPORTANT SUMMARY ABOUT INTERRUPTS:
n
2 RST 7.5 003CH Positive Edge Sensitive Maskable 2
g.i
3 RST 6.5 0034H Level Sensitive Maskable 3
rin
4 RST 5.5 002CH Level Sensitive Maskable 4
5 INTR Non-
Vectored ee Level Sensitive Maskable 5
gin
En
4..Draw the timing diagram for Opcode Fetch machine cycle, Memory Read
machine cycle,MemoryWrite,I/O read machine cycle and I/O write machine Cycle.
arn
(Nov/Dec-2014)
Instruction Cycle:
Le
The time required to access the memory or input/output devices is called machine
ww
cycle.
T-State
A portion of an operation carried out in one system clock period is called as T-state.The
machine cycle and instruction cycle takes multiple clock periods.
18
Opcode Fetch Machine Cycle:
n
g.i
rin
ee
gin
En
Opcode fetch cycle is part of any instruction execution. In this machine cycle 8085
Le
fetches opcode of instruction. The following are the sequence of actions that are
performed by 8085 to fetch an opcode from memory. This machine cycle consists of 4
w.
T-states.
ww
8085 places 16-bit address from PC on to the address bus and issues ALE pulse in
first T-state (T1). This is used to de-multiplex the address and data bus. It also issues
IO/M‟ signal to „0‟. This indicates that processor is performing memory related
operation. In second T-state (T2) processor issues RD‟ control signal to memory.
This enables memory to put data present at the address location given in previous T-
state on to data bus. RD‟ control signal is active for two clock pulses.
19
In T3 state memory places opcode on Data bus. Processor reads opcode present on
data bus and de-asserts RD‟ signal. Thus data bus goes into high impedance state.
This machine cycle is required when an operand is present in memory. This machine
cycle requires three T-states. The following are the sequence of actions performed by
n
microprocessor during this machine cycle.
g.i
rin
ee
gin
En
arn
Le
w.
ww
In the first T-state (T1) 8085 places address on address bus and issues ALE signal.
And also IO/M‟ signal is made low, since it is memory related operation.
In the second T-state (T2), processor issues RD‟ control signal to memory. In
response to this memory places data on data bus.
20
In the third T-state (T3), processor reads data from data bus, and de-asserts RD‟
signal.
n
g.i
rin
ee
gin
En
arn
Le
w.
ww
In first T-state (T1), 8085 processor places 16- bit address on address bus and issues
ALE signal. And also it makes IO/M‟ signal to low, indicating it is memory related
operation.
In second T-state (T2), processor places data to be written on data bus and asserts
WR‟ signal to the memory.
21
In the third T-state (T3), memory stores the data and processor de-asserts WR‟
signal.
n
g.i
rin
ee
gin
En
arn
Le
w.
In the first T-state (T1) 8085 places port address(for IO mapped addresses port
ww
address is 8-bit, but for memory mapped addresses IO device address is 16-bit, but
reading from such is performed by memory read machine cycle) on address bus and
issues ALE signal. And also IO/M‟ signal is made high, since it is IO related operation.
In the second T-state (T2), processor issues RD‟ control signal to IO peripheral.
In response to this input device places data on data bus.
22
In the third T-state (T3), processor reads data from data bus, and de-asserts RD‟
signal.
n
g.i
rin
ee
gin
En
arn
Le
w.
In first T-state (T1), 8085 processor places 8-bit port address on address bus (for IO
ww
mapped addresses port address is 8-bit, but for memory mapped addresses, IO device
address is 16-bit, but writing to such is performed by memory write machine cycle) and
issues ALE signal. And also it makes IO/M‟ signal to high, indicating it is IO related
operation.
In second T-state (T2), processor places data to be written on data bus and asserts
WR‟ signal to the peripheral.
23
In the third T-state (T3), peripheral accepts the data and processor de-asserts
WR‟ signal.
5.Explain how the memory organization was done in 8085.
8085 has 16 bit address bus, hence it can access 2 16 no. of memory locations,
which is equal to 64KB memory. Memory is required to store program as well as data.
Since microprocessor doesn‟t have on-chip memory, we need to connect it
externally.So it requires addressing mechanism.
The following are the steps involved in interfacing memory with 8085 processor.
n
g.i
1. First decide the size of memory requires to be interfaced. Depending on
this we can say how many address lines are required for it. For example if you
rin
want to interface 4KB (212) memory it requires 12 address lines. Remaining
address lines can be used in address decoding.
2.
ee
Depending on the size of memory required and given address range,
construct address decoding circuitry. This address decoding circuitry can be
gin
implemented with NAND gates and/or decoders or using PAL.
3. Connect data bus of memory to processor data bus.
En
4. Generate the control signals required for memory using IO/M‟, WR‟, RD‟
arn
mentioned. But 8085 has 16 address lines. Hence four of address lines are used
for address decoding
ww
2. Given that starting address for memory is A000H. So for 4KB memory
ending address becomes A000H+0FFFH (4KB) = AFFFH.
24
A0-A11 address lines are directly connected to address bus of memory chip. A12-A15
are used for generating chip select signal for memory chip.
n
g.i
rin
ee
gin
A15 line is use for enabling 74x138 decoder chip. A12, A13, A14 lines are connected to
En
74X138 chip as inputs. When theses lines are 010 output should be „0‟. This is provided
at O2 pin of 74X138 chip.
arn
Le
25
A15, A14, A13, A12 inputs should be 1010, for enabling the chip. So the circuit for this
is as shown above.
There are two types of address decoding mechanism, based on address lines used for
generating chip select signal.
1. Absolute decoding
n
2. Partial decoding
g.i
Absolute decoding:
All the higher order lines of microprocessor, left after using the required signals for
rin
memory are completely used for generating chip select signal.This type of decoding is
called absolute decoding.
Partial decoding: ee
gin
Only some of the address lines of microprocessor left after using the required
signals for memory are used for generating chip select signal. Because of this multiple
En
address ranges will be formed. If total memory space is not required for the system
then, this type of address decoding can be used. The advantage of this technique is
arn
fewer components are required for memory interfacing because of this board size
reduces and in turn cost reduces.
Le
w.
ww
26
UNIT-V
PART - A
1. What is indexing? NOV/DEC 2012
Indexing technique allows programmer to point or refer the data stored in sequential
memory locations one by one.
2.What are the various types of 8085 instructions?
MAY/JUNE2013,NOV/DEC2011
1. Data transfer group – MOV A,B
n
2. Arithmetic group – ADD B
g.i
3. Logical group- ANA B
rin
4. Branch group – JMP LABEL
5. Stack I/O and Machine Control group – PUSH,POP,HLT.
ee
3. Explain the difference between a JMP instruction and CALL instruction.
MAY/JUNE2012
gin
A JMP instruction permanently changes the program counter.
A CALL instruction leaves information on the stack so that the original program
En
A lookup table is an array that replaces runtime computation with a simpler array
indexing operation.The savings in terms of processing time can be significant, since
Le
the accumulator and sets the condition flags as a result of the subtraction.
6. Mention the similarity and difference between compare and subtract
instructions. May/June 2014
The compare and subtract instructions both are subtract one operand from
another and sets the flag register accordingly.The subtract instruction stores the result
in the accumulator while the compare instruction does not store any result except flags.
27
7. State the purpose and importance of NOP instruction. May/June 2014
The NOP instruction in CPU‟s is to insert a time delay.It may be useful to force
the CPU to wait for external (slower) devices to complete its work.
8. What are the different types of addressing modes?NOV/DEC 2013,MAY/JUNE
2012
The addressing modes specifies the location of the operand(data). The different
types are as follows
1. Immediate addressing
n
2. Register addressing
g.i
3. Direct addressing
rin
4. Indirect addressing
5. Implicit addressing
ee
9. Define stack and stack related instructions? MAY/JUNE
2013,NOV/DEC2012
gin
The stack is a group of memory locations in the R/W memory that is used for the
temporary storage of binary information during the execution of the program. The stack
En
28
13. How to access subroutine with in the main program procedure? NOV/DEC
2013
i) Accessed by CALL & RET instruction
ii)Machine code of instruction is put only once in the
memory iii)With procedures less memory is required
iv)Parameters can be passed in registers, memory location or stack
14.What are the four instructions which control the interrupt structure of the
n
8085 microprocessor?
g.i
DI(disable interrupts)
rin
EI(enable interrupts)
RIM(read interrupt masks)
SIM(set interrupt masks)
ee
15. How the microprocessor is synchronized with peripherals?
gin
The timing and control unit synchronizes all the microprocessor operations with
clock and generates control signals necessary for communication between the
En
PART - B
Le
MAY/JUNE 2011
ww
29
3. Register Addressing
4. Register Indirect Addressing
5. Implied Addressing
1.Immediate Addressing :
In immediate addressing mode, the data is specified in the instruction itself. The data
will be a part of the program instruction.All instructions that have „I‟ in their mnemonics
are of Immediate addressing type.
n
g.i
Example: MVI A, 01H- Move the data 01H given in the instruction to A register.
rin
2.Direct Addressing :
ee
In direct addressing mode, the address of the data is specified in the instruction.The
data will be in memory. In this addressing mode, the program instructions and data can
gin
be stored in different memory blocks. This type of addressing can be identified by 16-bit
address present in the instruction.
En
Example:LDA 4500H- Load the data available in memory location 4500H in A register.
arn
3.Register Addressing :
Le
In register addressing mode, the instruction specifies the name of the register in which
the data is available.This type of addressing can be identified by register names in the
w.
instruction.
ww
30
This type of addressing can be identified by letter „M‟ present in the instruction.
5.Implied Addressing :
In implied addressing mode, the instruction itself specifies the type of operation and
location of data to be operated. This type of instruction does not have any address,
n
register name, immediate data specified along with it.
g.i
rin
Example:CMA - Complement the content of accumulator
ee
2.Explain the Different types of instruction in 8085. NOV/DEC 2013,MAY/JUNE
2013,NOV/DEC 2012,MAY/JUNE 2012,MAY/JUNE 2011
gin
An instruction is a command given to the microprocessor to perform specified operation
on a given data.The instruction set of a microprocessor is the collection of instructions
En
2. Arithmetic Instructions.
3. Logical Instructions.
Le
The data transfer instructions move the data between registers or between registers
and memory. It copies the data from source location to destination location.No flags will
be affected.
MOVE INSTRUCTION:
MOV Rd, Rs
31
MOV M, Rs
MOV Rd, M
This instruction copies the contents of the source register into the destination register.
The contents of the source register are not altered.If one of the operands is a memory
location, its location is specified by the contents of the HL registers.
Example: MOV B, C - This instruction move the content of C register to B register.
MOV B, M -This instruction move the content of memory location pointed by HL
register to B register.
n
g.i
MOVE IMMEDIATE 8-BIT:
rin
MVI Rd, data
MVI M, data
ee
The 8-bit data is stored in the destination registeror memory.If the operand is a memory
gin
location, its location is specified by the contents of the HL registers.
En
registers.
Le
LOAD ACCUMULATOR:
w.
copied to the accumulator. The contents of the source are not altered. This is a 3-byte
instruction, the second byte specifies the low-order address and the third byte specifies
the high-order address.
Example: LDA 4000 –The content of memory location 4000 is loaded into A register.
STORE ACCUMULATOR:
32
STA 16-bit address
The contents of the accumulator are copied into the memory location specified by the
operand.This is a 3-byte instruction, the second byte specifies the low-order address
and the third byte specifies the high-order address.
Example: STA 4500–The content of A register is loaded into memory location 4500.
EXCHANGE:
n
XCHG
g.i
The contents of register H are exchanged with the contents of register D, and the
contents of register L are exchanged with the contents of register E.
rin
Example: XCHG :This instruction exchange the content of H and L with D and E
2.ARITHMETIC INSTRUCTIONS:
ee
The arithmetic instructions includes addition, subtraction ,increment and decrement
gin
operations.
ADDITION:
En
ADD Rs
ADD M
Le
The contents of the operand (register or memory) are added to the contents of the
accumulator and the result is stored in the accumulator. If the operand is a memory
w.
location, its location is specified by the contents of the HL registers. All flags are
modified to reflect the result of the addition.
ww
Example: ADD B – The content of A register is added with the content of B register and
the result is stored in A register.
ADD M -The content of A register is added with the content of
memory location pointed by HL register and the result is stored in A register.
33
ADD REGISTER TO ACCUMULATOR WITH CARRY:
ADC R
ADC M
The contents of the operand (register or memory) and the Carry flag are added to the
contents of the accumulator and the result is stored in the accumulator.If the operand is
a memory location, its location is specified by the contents of the HLregisters. All flags
are modified to reflect the result of the addition.
Example: ADC B -The content of A register is added with the content of B register and
n
also Carry and the result is stored in A register.
g.i
ADC M - The content of A register is added with the content of memory location
pointed by HL register and also carry and the result is stored in A register.
rin
ADD IMMEDIATE TO ACCUMULATOR
ee
gin
ADI 8-bit data
The 8-bit data (operand) is added to the contents of the accumulator and the result is
En
stored in the accumulator.All flags are modified to reflect the result of the addition.
Example: ADI 45 – The data 45H is immediately added with the content of A register
arn
SUBTRACTION:
Le
w.
SUB M
The contents of the operand (register or memory) are subtracted from the contents of
the accumulator and the result is stored in the accumulator.If the operand is a memory
location, its location is specified by the contents of the HLregisters.All flags are modified
to reflect the result of the subtraction.
Example: SUB B – The content of A register is subtracted with the content of B register
and the result is stored in A register.
34
SUB M -The content of A register is subtracted with the content of memory
location pointed by HL register and the result is stored in A register.
SBB R
SBB M
The contents of the operand (register or memory ) and the Borrow flag are subtracted
n
from the contents of the accumulator and the result is placed in the accumulator. If the
g.i
operand is a memory location, its location is specified by the contents of the HL
rin
registers.All flags are modified to reflect the result in accumulator.
Example: SBB B -The content of A register is subtracted with the content of B register
ee
and also Borrow flag and the result is stored in A register.
SBB M - The content of A register is subtracted with the content of memory
gin
location pointed by HL register and also Borrow and the result is stored in A register.
En
The 8-bit data (operand) is subtracted from the contents of the accumulator and the
result is stored in the accumulator. All flags are modified to reflect the result of the
Le
subtraction.
Example: SUI 45 -The data 45H is immediately subtracted with the content of A register
w.
35
Example:INR B – The content of B register is incremented by 1.
INR M – The content of memory location pointed by HL register is incremented by 1.
INCREMENT REGISTER PAIR:
INX R
The contents of the designated register pair are incremented by1 and the result is
stored in the same place.
Example: INX H – The HL register pair is incremented by 1 and showing the next
n
memory location.
g.i
rin
DECREMENT REGISTER OR MEMORY
DCR R
DCR M
ee
The contents of the designated (register or memory) are decremented by 1 and the
gin
result is stored in the same place.If the operand is a memory location, its location is
specified by the contents of the HL registers.
En
DCX R
w.
The contents of the designated register pair are decremented by1 and the result is
stored in the same place.
ww
Example: DCX H – The HL register pair is decremented by 1 and showing the previous
Memory location.
3.LOGICALINSTRUCTIONS:
36
Logical AND :
Logical AND register or memory with accumulator
ANA R
ANA M
The contents of the accumulator are logically ANDed with the contents of the operand
(register or memory), and the result is placed in the accumulator.If the operand is a
memory location, its address is specified by the contents of HL registers.S, Z, P are
n
modified to reflect the result of the operation. CY is reset. AC is set.
g.i
Example: ANA B - The content of A register is ANDed with the content of B register
rin
and the result is stored in A register.
ANA M - The content of A register is ANDed with the content of memory
ee
location pointed by HL register and the result is stored A register.
gin
LOGICAL AND IMMEDIATE WITH ACCUMULATOR
En
the result is placed in the accumulator.S, Z, P are modified to reflect the result of the
operation. CY is reset. AC is set.
Le
Example: ANI 45 -The data 45H is immediately ANDed with the content of A register
and result is stored in A register.
w.
XRA R
XRA M
The contents of the accumulator are Exclusive ORed with the contents of the operand
(register or memory), and the result is placed in the accumulator.If the operand is a
memory location, its address is specified by the contents of HL registers.
37
S, Z, P are modified to reflect the result of the operation. CY and AC are reset.
Example: XRA B -The content of A register is XORed with the content of B register and
the result is stored in A register.
XRA M -The content of A register is XORed with the content of memory
location pointed by HL register and the result is stored A register.
n
XRI 8-bit data
g.i
The contents of the accumulator are Exclusive ORed with the8-bit data (operand) and
rin
the result is placed in the accumulator.S, Z, P are modified to reflect the result of the
operation. CY and AC are reset.
ee
Example: XRI 45 -The data 45H is immediately XORed with the content of A register
and result is stored in A register.
gin
LOGICAL OR REGISTER OR MEMORY WITH ACCUMULATOR
En
ORA R
arn
ORA M
The contents of the accumulator are logically ORed with the contents of the operand
Le
S, Z, P are modified to reflect the result of the operation. CY and AC are reset.
Example: ORA B -The content of A register is ORed with the content of B register and
ww
38
ORI 8-bit data
The contents of the accumulator are logically ORed with the8-bit data (operand) and the
result is placed in the accumulator.S, Z, P are modified to reflect the result of the
operation. CY and AC are reset.
Example: ORI 45 - The data 45H is immediately ORed with the content of A register
and result is stored in A register.
COMPLEMENT ACCUMULATOR:
n
g.i
CMA
rin
The contents of the accumulator are complemented.
No flags are affected.
Example: CMA
ee
gin
COMPLEMENT CARRY:
En
CMC
The Carry flag is complemented.No other flags are affected.
arn
Example: CMC
Le
SET CARRY :
w.
STC
The Carry flag is set to 1.No other flags are affected.
ww
Example: STC
The branching instructions are used to change the execution order.They are divided into
conditional jump/call or unconditional jump/call.
39
JUMP UNCONDITIONALLY
n
g.i
The program sequence is transferred to the memory location specified by the 16- bit
address given in the operand based on the specified flag of the PSW.
rin
Example:
JC Jump on Carry CY = 1
JZ Jump on Zero Z =1
ww
40
UNCONDITIONAL SUBROUTINE CALL :
n
CONDITIONAL SUBROUTINE CALL :
g.i
The program sequence is transferred to the memory location specified by the 16-bit
rin
address given in the operand based on specified flag of the PSW. Before the transfer,
the address of the next instruction after the call the contents of the program counter is
pushed onto the stack.
ee
gin
Example: CZ 4000
En
CC Call on Carry CY = 1
Le
CZ Call on Zero Z =1
41
CPO Call on parity odd P=0
RET
The program sequence is transferred from the subroutine to the calling program. The
two bytes from the top of the stackare copied into the program counter, and program
execution begins at the new address.
n
g.i
Example: RET
rin
CONDITIONAL RETURN FROM SUBROUTINE:
The program sequence is transferred from the subroutine to the calling program based
ee
on the specified flag of the PSW.The two bytes from the top of the stack are copied into
the program counter, and program execution begins at the new address.
gin
Example: RZ
En
RC Return on Carry CY = 1
RZ Return on Zero Z =1
42
RPE Return on parity even P=1
These instructions are used to manipulate the stack to perform the input /output and to
alter the internal control flags.Unless specified the flags are not affected.
n
g.i
STACK INSTRUCTION:
rin
PUSH :
POP INSTRUCTION:
arn
The contents of register A and the contents of condition flags which form the PSW are
restored from the stack.
w.
I/O INSTRUCTION :
ww
IN port
The data placed on the 8 bit bidirectional data bus by the specified port is moved to
register A.
OUT port
43
The contents of register A are placed on the 8 bit data bus is transferred to the specified
port.
EI
The interrupt system is enabled.
n
DI
g.i
The interrupt system is disabled.
rin
NOP
ee
No Operation is performed.No flags are affected.
gin
HLT
En
3.Write an 8085 ALP to add, subtract, multiply and divide two 8 bit numbers
stored at consecutive memory locations. NOV/DEC 2015
Le
8 BIT ADDITION:
w.
ALGORITHM:
ww
44
PROGRAM:
4101
n
4103 4500
g.i
4104
rin
4105 MOV A, M Transfer first data to
accumulator
4106 INX
ee H Increment HL reg. to point
gin
next memory Location.
Content.
arn
410A
w.
45
410E INX H Increment HL reg. to point
next memory Location.
8 BIT SUBTRACTION:
n
g.i
1. Initialize memory pointer to data location.
rin
2. Get the first number from memory in accumulator.
3. Get the second number and subtract from the accumulator.
ee
4. If the result yields a borrow, the content of the acc. is complemented and 01H is
added to it (2‟s complement). A register is cleared and the content of that reg. is
gin
incremented in case there is a borrow. If there is no borrow the content of the
acc. is directly taken as the result.
En
PROGRAM:
4102
ww
4103 4500
4104
46
accumulator
n
not yield borrow.
g.i
4109
410A
rin
410B INR C Increment C reg.
410E
to memory.
w.
8 BIT MULTIPLICATION:
47
ALGORITHM:
n
5. Add multiplicand to accumulator
g.i
6. Decrement multiplier
rin
7. Repeat step 5 till multiplier comes to zero.
8. The result, which is in the accumulator, is stored in a memory location.
PROGRAM: ee
gin
ADDRESS LABEL MNEMONICS OPERAND COMMENT
En
4101 4500
arn
4102
Le
4106
48
4108
n
g.i
410C
rin
410D INR C Increment C reg
410F JNZ
eeL1 Jump to L1 if B is not zero.
gin
4110
En
4111
arn
49
8 BIT DIVISION:
ALGORITHM:
n
4. Stop subtraction when the dividend is less than the divisor .The dividend now
g.i
becomes the remainder. Otherwise go to step 2.
rin
5. stop the program execution.
PROGRAM: ee
gin
ADDRESS LABEL MNEMONICS OPERAND COMMENTS
4101
arn
4103 4500H
4104
w.
50
4108 INR B Increment B reg
410B
n
410D DCR B Decrement B reg
g.i
410E INX H Increment HL reg. to point
rin
next mem. Location.
B reg. to memory.
4.Write an 8085 ALP to find largest & smallest numbers. MAY/JUNE 2011
ww
LARGEST NUMBER:
ALGORITHM:
51
3. Initialize a counter (register) with the total number of elements in an array.
4. Decrement the counter by 1.
5. Increment the memory pointer to point to the next element.
6. Compare the accumulator content with the memory content (next element).
7. If the accumulator content is smaller, then move the memory content (largest
element) to the accumulator. Else continue.
8. Decrement the counter by 1.
9. Repeat steps 5 to 8 until the counter reaches zero
n
10. Store the result (accumulator content) in the specified memory location.
g.i
rin
PROGRAM:
ADDRESS LABEL
ee
MNEMONICS OPERAND COMMENTS
gin
8001 LXI H,8100 Initialize HL reg. to
8002 8100H
En
8003
arn
52
800A then go to loop
800B
n
g.i
loop1
800F
rin
8010
8012
ee memory location.
gin
8013
En
SMALLEST NUMBER:
Le
ALGORITHM:
w.
53
8. Decrement the counter by 1.
9. Repeat steps 5 to 8 until the counter reaches zero
10. Store the result (accumulator content) in the specified memory location.
PROGRAM:
n
8001 LXI H,8100 Initialize HL reg. to
g.i
8002 8100H
rin
8003
8004 MVI
ee B,04 Initialize B reg with no. of
comparisons(n-1)
gin
8005
800A
ww
800B
54
800E JNZ LOOP1 If B is not Zero go to loop1
800F
8010
n
8013
g.i
8014 HLT Stop the program
rin
ee
5.Write an 8085 ALP to arrange in ascending and descending order. MAY/JUNE
2013,MAY/JUNE 2012
gin
Ascending Order:
En
ALGORITHM:
1. Get the numbers to be sorted from the memory locations.
arn
2. Compare the first two numbers and if the first number is larger than second then
interchange the number.
Le
PROGRAM:
ww
55
8003 8100H
8004
n
8008 INX H Increment HL reg. to point
g.i
next memory location
rin
8009 CMP M Compare M & A
800B
ee to loop1
gin
800C
En
8014
56
8015
8018
8019
n
801A HLT Stop the program
g.i
DESCENDING ORDER
rin
ALGORITHM:
1. Get the numbers to be sorted from the memory locations.
ee
2. Compare the first two numbers and if the first number is smaller than second then
interchange the number.
gin
3. If the first number is larger, go to step 4
4. Repeat steps 2 and 3 until the numbers are in required order
En
PROGRAM:
arn
number of comparisons
8001
(n-1)
w.
8003 8100H
8004
57
8007 LOOP2 MOV A,M Transfer first data to
acc.
n
800A JNC LOOP1 If A is greater than M
g.i
then go to loop1
800B
rin
800C
800D MOV
ee D,M Transfer data from M to
D reg
gin
800E MOV M,A Transfer data from acc
En
to M
8015
58
8017 JNZ LOOP3 If B is not Zero go to
loop3
8018
8019
n
g.i
rin
ee
gin
En
arn
Le
w.
ww
59
UNIT-III 8051 MICROCONTROLLER
PART - A
1. What is Microcontroller?
A device which contains the microprocessor with integrated peripherals like memory,
serial ports, parallel ports, timer/counter, interrupt controller, data acquisition interfaces
like ADC, DAC is called microcontroller.
2. List the features of 8051 microcontroller. (Nov/Dec 2014)
The features are single supply +5 volt operation using HMOS technology. 4096 bytes
n
program memory on chip (not on 8031), 128 data memory on chip, Four register banks,
g.i
Two multiple modes, 16-bit timer/counter, Extensive Boolean processing capabilities, 64
rin
KB external RAM size
3. How is the Program memory organized in an 8051 Microcontroller?
ee
In an 8051 based system the entire 64KB program memory can be external or 4 KB
is internal and the remaining 60 KB is external. This is decided by the logic level of
gin
the signal
EA Pin. When EA pin is tied high (+Vcc or 5 V) the first 4 KB of program memory is
En
internal and the remaining 60 KB is external. When EA pin is tied low (GND or 0 V) the
internal ROM is ignored and the entire 64 KB is external.
arn
Port 3 Alternative
pins function
w.
P3.2 INT0
P3.3 INT1
P3.4 T0
P3.5 T1
P3.6 WR
P3.7 RD
60
5. What is the role of DPTR in 8051 Microcontroller?
The Data Pointer (DPTR) is the 8051s only user-accessible 16-bit (2-byte) register. The
Accumulator, "R" registers, and "B" register are all 1-byte values. DPTR, as the name
suggests, is used to point to data. It is used by a number of commands which allow the
8051 to access external memory. When the 8051 accesses external memory it will
access the external memory at the address indicated by DPTR. While DPTR is most
often used to point to data in external memory, many programmers often take
advantage of the fact that it‟s the only true 16-bit register available. It is often used to
n
store 2-byte values which have nothing to do with memory locations.
g.i
6. Mention the size of DPTR and stack pointer in 8051 microcontroller.
rin
The DPTR is 16 bit data Register and SP is 8 bit Register.
7. What is the need of Coprocessor?
ee
The general-purpose processors such as 8086 or 8085 are not optimized to do
arithmetic manipulations, CRT display manipulation and word processing. Hence we go
gin
for a coprocessor, which is capable of doing dedicated functions (Special Operations) to
increase the overall execution speed of larger systems.
En
8. Write the vector address and priority sequence of 8051 interrupts (Nov/Dec
2014)
arn
Vector
The interrupts are : address
Le
61
10. Mention the purpose of PSEN andEA in 8051microcontroller. (May/June
2014)
PSEN: If external ROM is used for storing program then a logic zero (0) appears on it
every time the microcontroller reads a byte from memory.
EA : By applying logic zero to this pin, P2 and P3 are used for data and address
transmission with no regard to whether there is internal memory or not. It means that
even there is a program written to the microcontroller, it will not be executed. Instead,
n
the program written to external ROM will be executed. By applying logic one to the EA
g.i
pin, the microcontroller will use both memories, first internal then external (if exists).
11. List the interrupt sources in 8051 microcontroller. (May/June 2014) (Nov/Dec
rin
2015)
8051 Microcontroller has 5 interrupts: (1) External interrupt 0 (2) External interrupt
ee
1 (3) Timer0 overflow (4) Timer1 overflow (5) Transmission interrupt (TI)/ reception
gin
interrupt (RI) (6) Reset.
12. What is the function of R registers in 8051 Microcontroller? (May/June 2013)
The R registers are in a group of register banks denoted as bank 0 to bank 3. The R
En
registers of any bank can take value from 0 to 7. At any one time the controller can use
any one of the register banks as general purpose registers. The selection of register
arn
banks depends on the value of the bits RS0 and RS1 in the PSW registers. After a reset
the PSW register is cleared and so the controller works with register bank0.
Le
of the processor by means of 1 bit status flags. The PSW is also known as flag register.
ww
The flags are useful for the programmer to test condition of the result and make
decisions. The PSW consists of four math flags and two register bank select bits. The
Math flag are carry, auxiliary carry, overflow and parity flag. The register bank select bits
are RS0 and RS1.
14. Mention the registers used for serial communication in 8051 Microcontroller?
(Nov/Dec 2014)
62
SCON- Serial port control register, SBUF- Serial port data buffer are the registers used
for serial communication in 8051 Microcontrollers.
15. Explain relative addressing in an 8051.
In relative addressing, the instruction specifies the address relative to the PC(Program
Counter). The instruction will carry an offset whose range is -12810 to +12710. The
offset is added to the PC to generate the 16 bit physical address.
Example: JC offset- If carry is one, then the program control jumps to an address
obtained by adding the content of the PC and the offset value in the instruction.
n
g.i
16. List the instructions that affect the overflow flag in 8051.
ADD, ADDC, SUBB, DIV and MUL.
rin
17. Write the functions of TMOD register in 8051
Microcontroller. (Nov/Dec 2015)
(MSB)
(LSB) ee
gin
GATE C/T M1 M0 GATE C/T M1 M0
TIMER 1 TIMER 0
En
63
addressing microprocessor
and additionally it includes timers
circuits and interrupt handling circuit. parallel
and serial I/O and the internal RAM and
ROM.
It has one or two types of bi
handling It has many bit handling instructions.
Instructions.
n
g.i
Memory and I/O access time is large. Memory and I/O access time is less.
rin
PART - B
1. Explain with a neat block diagram the architecture of 8051microcontroller.
(May/June 2013) (May/June 2015)
ee
gin
The 8051 microcontroller is an 8-bit microcontroller.The major components of
8051microcontroller and their functions
En
1.ALU(ArithmeticandLogicUnit)
2.PC(ProgramCounter)
arn
3.Registers
4.Timersandcounters
Le
5.InternalRAMandROM
6.Fourparallelinput/outputports
w.
7.Interruptcontrollogicwithfivesourcesofinterrupt
8.Serialdatacommunication
ww
9.PSW(ProgramStatusWord)
10.DataPointer(DPTR)
11StackPointer(SP)
12.Address and Data bus.
13.Clock Circuits.
64
n
g.i
rin
ee
gin
En
arn
Le
w.
ww
65
2.ProgramCounter(PC):
A program counter is a 16-bit register and it has no internal address.The basic function
of program counter is to fetch the next instruction to be executed.The PC increments
automatically, holding the address of the next instruction.
3.Registers:
Registers are usually known as data storage devices. 8051 microcontroller has 2
registers, namely Register A and Register B.These registers are used to store the
output of mathematical and logical instructions.
n
g.i
Accumulator(A Register):
rin
A Register serves as an accumulator.The operations of addition, subtraction,
multiplication and division are carried out by A Register A Register is also involved in
ee
data transfers between the microcontroller and external memory.
gin
B Register:
En
Register A.
Le
66
RAM
The 8051 microcontroller is composed of 128 bytes of internal RAM. This is a volatile
memory since its contents will be lost if power is switched off. These 128 bytes of
internal RAM are divided into 32 working registers.This 32 working registers divided into
4 register banks (Bank 0-Bank 3) with each bank consisting of 8 registers (R0 - R7).
There are 128 addressable bits in the internal RAM.It is also called as program memory.
n
g.i
6.FourParallelInput/OutputPorts:
The 8051 microcontroller has four 8-bit input/output ports. These are: P0,P1,P2,P3.
rin
PORT P0:
ee
When there is no external memory present, this port acts as a general purpose
input/output port.In the presence of external memory, it functions as a multiplexed
gin
address and data bus. It performs dual functions.
En
PORT P1:
This port is used for various interfacing activities.This 8-bit port is a normal I/O port.
arn
PORT P2:
Le
This port can be used as a general purpose port when there is no external memory.
When external memory is present it works in conjunction with PORT PO as an address
w.
bus.
.
ww
PORT P3:
PORT P3 behaves as a dedicated I/O port.
67
.InterruptControl:
A signal which is used to suspend or halt the normal program execution for a
temporary period of time in order to serve the request of another program or hardware
device is called an interrupt. An interrupt can either be an internal or external.
n
sending hardware signals.
g.i
The interrupt mechanism keeps the normal program execution in a "put on hold" mode
and executes a subroutine program and after the subroutine is executed, it gets back to
rin
its normal program execution.
ee
In8051,5sourcesofinterruptsareprovided.Theyare:
a)2ExternalinterruptsourcesINT0andINT1
gin
b) 3 Internal interrupt sources - Serial port interrupt, Timer Flag 0 and Timer Flag 1.
En
receiving data bits is a serial connection network.The SBUF(Serial Buffer) register holds
the data.The SBUF register has 2 parts – one for storing the data to be transmitted
Le
(done using TXD pin) and another for receiving data (done using RXD pin)from outer
sources.
w.
The SCON (Serial Control) register manages the data communication.The PCON
(Power Control) register manages the data transfer rates.Two pins - RXD and TXD,
ww
68
9.PSW(ProgramStatusWord):
Program Status Word is a register which holds a program's information and also
monitors the status of the program currently being executed.
PSW also has a pointer which points towards the address of the next instruction to be
executed.
n
CY AC RS1 RS0 OV Reserved P 0
g.i
CY – Carry
rin
AC – Auxiliary Carry
RS1, RS0 – 00 Register bank 0
ee 01 Register bank 1
gin
10 Register bank 2
11 Register bank 3
OV – Overflow
En
P – Parity
arn
10.DataPointer(DPTR):
The data pointer or DPTR is a 16-bit register. It is made up of two 8-bit registers called
Le
DPH and DPL. Separate addresses are assigned to each of DPH and DPL. These 8-
bit registers are used for the storing the memory address.
w.
ww
11.StackPointer(SP):
The stack pointer (SP) in 8051 is an 8-bit register. The main purpose of SP is to
access the stack. Stack is a special area of data in memory. The SP acts as a pointer
for an address that points to the top of the stack.
12.DataandAddressBus:
A bus is group of wires using which data transfer takes place from one location to
69
another within a system There are mainly two kinds of buses - Data Bus and Address
Bus
Data Bus:
The purpose of data bus is to transfer data. The no of data lines decides the word
length of the microcontroller. The data bus is bidirectional.
Address Bus:
The purpose of address bus is to transfer information. The information tells from where
n
within the components, the data should be sent to or received from. The no of address
g.i
lines decides the capacity of memory address. The address bus is unidirectional.
rin
13.Clock Circuits:
Internal operations can be synchronized using clock circuits which produce clock
pulses. ee
gin
With each clock pulse, a particular function will be done and hence synchronization is
achieved. There are two pins XTAL1 and XTAL2 which form an oscillator circuit which
En
4. RST (Reset) - Reset the ports and internal registers upon start up
w.
70
External 0 Interrupt
Timer 0 over flow Interrupt
External 1 Interrupt
Timer 1 over flow Interrupt
Serial Interrupt
The various interrupts and their different code depending on interrupt was executed.
This is done by jumping to a fixed address when a given interrupt occurs.
n
g.i
Types of Interrupts Interrupt Flag Interrupt Address
External 0 Interrupt IE0 0003H
rin
Timer 0 over flow Interrupt TF0 000BH
External 1 Interrupt IE1
Timer 1 over flow Interrupt ee TF1
0013H
001BH
gin
Serial Interrupt RI/TI 0023H
En
Whenever Timer 0 overflows (i.e., the TF0 bit is set), the main program will be
temporarily suspended and control will jump to 000BH.The program code at address
arn
D7 D6 D5 D4 D3 D2 D1 D0
ww
71
D2 - EX1- 1-Enable external interrupt1. 0 – Disable external interrupt1
D1 - ET0- 1-Enable Timer0 overflow interrupt. 0 – Disable Timer0 overflow interrupt
D0 - EX0-1-Enable External interrupt0. 0 – Disable External interrupt0.
or example, if you wish to enable Timer 1 Interrupt, you would execute either:
Polling Sequence:
The 8051 automatically evaluates whether an interrupt should occur after every
instruction. When checking for interrupt conditions, it checks them in the following order:
n
External 0 Interrupt
g.i
Timer 0 Interrupt
rin
External 1 Interrupt
Timer 1 Interrupt
Serial Interrupt
ee
gin
This means that if a Serial Interrupt occurs at the exact same instant that an External 0
Interrupt occurs, the External 0 Interrupt will be executed first and the Serial Interrupt
En
Interrupt Priorities :
arn
The 8051 offers two levels of interrupt priority: high and low. By using interrupt priorities
Le
you may assign higher priority to certain interrupt conditions.Interrupt priorities are
controlled by the IP SFR (B8h).
w.
D7 D6 D5 D4 D3 D2 D1 D0
72
Nothing can interrupt a high-priority interrupt--not even another high priority
interrupt.
A high-priority interrupt may interrupt a low-priority interrupt.
A low-priority interrupt may only occur if no other interrupt is already executing.
If two interrupts occur at the same time, the interrupt with higher priority will
execute first. If both interrupts are of the same priority the interrupt which is
serviced first by polling sequence will be executed first.
n
g.i
When an interrupt is triggered, the following actions are taken automatically by the
microcontroller
rin
The current Program Counter is saved on the stack, low-byte first.
ee
Interrupts of the same and lower priority are blocked.
In the case of Timer and External interrupts, the corresponding interrupt flag is
gin
cleared.
Program execution transfers to the corresponding interrupt handler vector
En
address.
arn
automatically clears the interrupt flag before passing control to your interrupt handler
routine.
w.
End of Interrupt:
ww
An interrupt ends when the program executes the RETI (Return from Interrupt)
instruction. When the RETI instruction is executed the following actions are taken by the
microcontroller:
Two bytes are popped off the stack into the Program Counter to restore normal
program execution.
73
Interrupt status is restored to its pre-interrupt status.
Serial Interrupts :
Serial Interrupts are slightly different than the rest of the interrupts. There are two
interrupt flags: RI and TI. If either flag is set, a serial interrupt is triggered. In the serial
port, the RI bit is set when a byte is received by the serial port and the TI bit is set when
a byte has been sent. The serial interrupt is executed, because the RI flag was set or
because the TI flag was set--or because both flags were set. The, ISR must check the
n
status of these flags to determine what action is appropriate. The 8051 does not
g.i
automatically clear the RI and TI flags and it can be clear by interrupt handler.
rin
3.Explain the memory organization of 8051 microcontroller.
The 8051 microcontroller has two types of
memory Program Memory ee
gin
Data Memory
The separation of code and data memory in the 8051 is different from the usual Von
En
Neumann architecture, which defines that code and data can share the common
memory.
arn
Program Memory:
Le
Program memory – 64 KB of program memory includes the 4KB of the on- chip ROM. If
w.
the address exceeds 0FFF H, it will access the external program memory. The
processor will come to know whether the user wants to use the Internal ROM or not
ww
from the EA(active low) pin. If this pin is pulled low, it means that the user does not want
to use the Internal ROM available. The processor will 0000H-FFFFH from the external
Program Memory. If this pin is held high, the processor will access 0000H - 0FFFH from
the Internal ROM and as address goes above 0FFFH, it will access the external
Program Memory that is interfaced it
If EA (active low)= 5V
74
Internal Program Memory (ROM) =0000H-0FFFH (4KB)
External Program Memory =1000H-FFFFH(60KB)
If EA (active low)= 0V
External Program Memory =0000H-FFFFH(64KB)
Data Memory:
Data memory – 64 KB of external data memory and 128 bytes of internal data RAM and
21 special function registers. For accessing the external data memory, the processor
n
can either issue an 8 bit address or a 16 bit address. To access the internal data
g.i
memory, the 8 bit address is used. This 8 bit address can provide address space for
rin
256 locations. The lower 128 addresses (0 – 127) are used as 128 bytes on chip RAM.
The upper part of the address space (128-255) is used to address the various SFR. The
ee
Lowest 32 bytes (0-31) are reserved for 4 banks of 8 register each R0-R7,out of which
one bank may be used at any time. The working bank is specified in two bits of the
gin
Program Status Word.
En
arn
Le
w.
ww
75
n
g.i
rin
ee
4. Explain the port operation in 8051 microcontroller. (Nov/Dec 2015) (May/June
gin
2015)
I/O Port Configuration
En
Each port of 8051 has bidirectional capability. Port 0 is called 'true bidirectional port' as it floats
(tristated) when configured as input. Port-1, 2, 3 are called 'quasi bidirectional port'.
arn
76
Fig 1: Port-0 Structure
n
g.i
rin
ee
gin
En
as output port, the pin is pulled up or down through internal pull-up. To use port-1 as input port,
'1' has to be written to the latch. In this input mode when '1' is written to the pin by the external
Le
device then it read. When '0' is written to the pin by the external device then the external source
must sink current due to internal pull-up. If the external device is not able to sink the current the
w.
pin voltage may rise, leading to a possible wrong reading. Port-2 has 8-pins (P2.0-P2.7) .
ww
77
n
g.i
rin
Fig 3 Port 2 Structure
Port-2 is used for higher external address byte or a normal input/output port. The I/O operation is
ee
similar to Port-1. Port-2 latch remains stable when Port-2 pin are used for external memory
access. Due to internal pull-up there is limited current driving capability.
gin
PORT 3 Pin Structure:
En
78
Fig 4 Port 3 Structure
Each pin of Port-3 can be individually programmed for I/O operation or for alternate function.
The alternate function can be activated only if the corresponding latch has been written to '1'.
To use the port as input port, '1' should be written to the latch. This port also has internal pull-up
and limited current driving capability.
5.Draw the pin diagram of 8051 microcontroller and explain its port structure.
n
g.i
Port 0(p0.0 to p0.7):
It is 8-bit bi-directional I/O port. It is bit/ byte addressable. During external memory access, it
rin
functions as multiplexed data and low-order address bus AD0-AD7.
then it works as input mode. It functions as simply I/O port and it does not have any alternative
ww
function.
79
Port 3(p3.0 to port 3.7):
It is 8-bit I/O port. In an alternating function each pins can be used as a special function I/O pin.
P3.0-RxD:
It is an Input signal. Through this I/P signal microcontroller receives serial data of serial
communication circuit.
n
g.i
rin
ee
gin
En
arn
Le
w.
ww
80
P3.1-TxD:
It is O/P signal of serial port. Through this signal data is transmitted.
P3.2- (INT0):
It is external hardware interrupt I/P signal. Through this user, programmer or peripheral
interrupts to microcontroller.
n
P3.3-(INT1):
g.i
It is external hardware interrupt I/P signal. Through this user, programmer or peripheral
rin
interrupts to microcontroller.
P3.4- T0:
ee
It is I/P signal to internal timer-0 circuit. External clock pulses can connects to timer-0
gin
through this I/P signal.
En
P3.5-T1:
It is I/P signal to internal timer-1 circuit. External clock pulses can connects to timer-1
arn
P3.6-WR:
It is active low write O/P control signal. During External RAM (Data memory) access it is
w.
P3.7- RD:
It is active low read O/P control signal. During External RAM (Data memory) access it is
generated by microcontroller. when [RD(bar)]=0, then performs read operation from
external RAM.
XTAL1 and XTAL2:
81
These are two I/P line for on-chip oscillator and clock generator circuit. A resonant
network as quartz crystal is connected between these two pin. 8051 microcontroller also
drives from external clock, then XTAL2 is used to drive 8051 from external clock and
XTAL1 should be grounded.
EA/VPP:
It is and active low I/P to 8051 microcontroller. when (EA)= 0, then 8051 microcontroller
access from external program memory (ROM) only. When (EA) = 1, then it access
n
internal and external program memories (ROMS).
g.i
rin
PSEN:
It is active low O/P signal. It is used to enable external program memory (ROM). When
ee
[PSEN(bar)]= 0, then external program memory becomes enabled and microcontroller
read content of external memory location. Therefore it is connected to (OE) of external
gin
ROM. It is activated twice every external ROM memory cycle.
En
ALE:
Address latch enable: It is active high O/P signal. When it goes high, external address
arn
latch becomes enabling and lower address of external memory (RAM or ROM) latched
into it. Thus it separates A0-A7 address from AD0-AD7. It provides properly timed signal
Le
to latch lower byte address. The ALE is activated twice in every machine cycle. If
external RAM & ROM is not accessed, then ALE is activated at constant rate of 1/6
w.
oscillator frequency, which can be used as a clock pulses for driving external devices.
ww
RESET:
It is active high I/P signal. It should be maintained high for at least two machine cycle
while oscillator is running then 8051 microcontroller resets.
82
UNIT- IV PERIPHERAL INTERFACING
PART - A
n
2. How data is transmitted in asynchronous serial communication? (May/June-
g.i
2014)
rin
In asynchronous data transfer, one character is transferred at a time. Start and
stop bits are used with each character. The transmitter and receiver use two separate
clock inputs here.
ee
gin
3. What are the internal registers available in 8259 PIC? (Apr/May-2015)
Asynchronous synchronous
w.
Data can be sent one character at a time used for transferring large
amount of data
83
5. What are the functions of USART? (Nov/Dec-2014)
n
6. What is scan counter in 8279? (Nov/Dec-2012)
g.i
The scan counter has two modes to scan the key matrix and refresh the display.
rin
In the encoded mode, the counter provides binary count that is to be externally decoded
to provide the scan linesfor keyboard and display. In the decoded scan mode, the
ee
counter internally decodes the least significant 2 bit and provides a decoded 1 out of 4
gin
scan on SL3-SL 3. The keyboard and display both are in the same mode at a time.
(handshake mode) iii. Mode 2- Strobe bi-directional mode b) Bit Set/Reset Mode.
84
9. Give the control word format of 8253 Timer. (May/June-2012)
n
g.i
rin
ee
gin
En
11. What are the different peripheral interfacing used with 8085 microprocessor?
(May/June-2013)
85
12. What are the output terminals in USART 8251? (May/June-2013)
TXD (output terminal), TXRDY (output terminal), TXEMPTY (Output terminal), RXRDY
(Output terminal), DTR (Output terminal), RTS (Output terminal)
n
13. What are the different types of command words used in 8259A? (Nov/Dec-
g.i
2013)
The command words of 8259A are classified in two groups
rin
1. Initialization command words (ICWs)
2. Operation command words (OCWs)
ee
14. What are the basic modes of operation of 8255? (Nov/Dec-2013)
gin
Mode 0: Basic Input/output
En
(May/June-2014)
w.
In this the data is transferred bit by bit that is used for one to one communication.
ww
PART - B
1.Draw the block diagram of 8255A Programmable Peripheral Interface (PPI) and
explain each block . (May/June-2014)
86
Port A and port B can be used as 8-bit input/output ports.Port C can be used as an 8-
bit input/output port or as two 4-bit input/output ports or to produce handshake signals
for ports A and B.
n
register.The RD andWR pin , which are active low signals for read and write operations.
g.i
The address lines A1 and A0 allow to successively access any one of the ports or the
rin
control register.The control signal chip select CS is used to enable the 8255 chip. when
CS = '0', the 8255 is enabled.The RESET input is connected to the RESET
ee
pin8085.When the system is reset, all the ports are initialized as input lines.
gin
The control register or the command word register is an 8-bit register used to select the
modes of operation and input/output designation of the ports.
En
PC7) can be set/reset by suitably loading the control word register. BSR mode and I/O
mode are independent and selection of BSR mode does not affect the operation of
other ports in I/O mode.
A1 A0 Port Selected
0 0 Port A
87
0 1 Port B
1 0 Port C
n
g.i
rin
ee
gin
En
arn
Le
w.
ww
D7 D6 D5 D4 D3 D2 D1 D0
0 * * * B2 B1 B0 S/R
88
D7 bit is always 0 for BSR mode.
Bits D6, D5 and D4 are don't care bits.
Bits D3, D2 and D1 are used to select the pin of Port C.
Bit D0 is used to set/reset the selected pin of Port C.
n
B2 B1 B0 Pin of Port C Selected
g.i
0 0 0 PC0
0 0 1 PC1
rin
0 1 0 PC2
0
1
1
0
1
0
PC3
PC4 ee
gin
1 0 1 PC5
1 1 0 PC6
En
1 1 1 PC7
arn
INPUT/OUTPUT MODE
Le
This mode is selected when D7 bit of the Control Word Register is 1. There are three
I/O modes
w.
D7 D6 D5 D4 D3 D2 D1 D0
89
Mode 0 - Simple I/O
In this mode, the ports can be used for simple I/O operations without handshaking
signals.
Port A- 8 bit port.
Port B – 8 bit port.
Port C – two 4 bit ports.(Port C upper & Port C lower)
Mode 0 features:
n
g.i
Output ports are latched.Input ports are buffered, not latched.Ports do not have
handshake or interrupt capability.With 4 ports, 16 different combinations of I/O are
rin
possible.
Mode 1:- Strobed I/O
ee
Port A or Port B for handshake (strobed) input or output operation.
Port A + Port C upper function as handshake signals.
gin
Port B + Port C lower function as handshake signals.
Mode 1 features:
En
Two ports i.e. port A and B can be used as 8-bit i/o ports.Each port uses three lines of
port c as handshake signal and remaining two signals can be used as i/o ports.Interrupt
arn
90
Mode 2:Strobed Bidirectional I/O
Port A can be used for bidirectional handshake data transfer. Pins PC4 - PC7 are used
as handshake lines for port A.Acknowledgement and handshaking signals are provided
to maintain proper data flow and synchronization between the data transmitter and
receiver.
n
(May/June-2014)
g.i
rin
The Intel 8253 and 8254 are Programmable Interval Timers (PITs), which perform
timing and counting functions and has the same pinout.
8253
ee 8254
gin
Operating frequency is 0-2.6 Mhz. Operating frequency is 0-10 Mhz.
En
Reads and Writes of the same counter Reads and Writes of the same counter can
cannot be interleaved. be interleaved.
w.
ww
91
BLOCK DIAGRAM OF INTEL 8253/8254
n
g.i
rin
ee
gin
En
The timer has three counters.or timers which are named as "Counter 0", "Counter 1"
and "Counter 2".Each counter has 2 input pins – "CLK" (clock input) and "GATE" – and
arn
1-pin, "OUT", for data output. The 3 counters are 16-bit down counters independent of
each other, and can be easily read by the CPU. The first counter is used to generate
Le
Data/Bus Buffer:
ww
This block contains the logic to buffer the data bus to / from the microprocessor, and to
the internal registers. It has 8 input pins, usually labelled as D7..D0, where D7 is the
MSB.
Read/Write Logic:
92
/WR: write signal
/CS: chip select signal
A0, A1: address lines
n
word register contains 8 bits, labeled D7..D0 (D7 is the MSB).
g.i
D7 D6 D5 D4 D3 D2 D1 D0
rin
SC1 SC2 RW1 RW0 M2 M1 M0 BCD
ee
D0 – 1 = BCD Counter , 0 – Binary Counter
gin
D3 D2 D1
En
M2 M1 M0 Mode
0 0 0 Mode0
arn
0 0 1 Mode1
X 1 0 Mode2
Le
X 1 1 Mode3
w.
1 0 0 Mode4
ww
1 0 1 Mode5
D5 D4
93
1 0 Read/Write MSB only
D7 D6
0 0 Select Counter 0
n
0 1Select Counter 1
g.i
1 0Select Counter 2
rin
1 1Illegal
ee
READ BACK COMMAND (ONLY AVAILABLE IN 8254)
gin
D7 D6 D5 D4 D3 D2 D1 D0
En
D3 – 1 = Select Counter 2
D2 – 1 = Select Counter 1
w.
D1 – 1 = Select Counter 0
ww
Operation Modes
94
to 0.Counting rate is equal to the input clock frequency.The OUT pin is set low after the
Control Word is written, and counting starts one clock cycle after the COUNT
programmed. OUT remains low until the counter reaches 0, at which point OUT will be
set high until the counter is reloaded or the Control Word is written. The Gate signal
should remain active high for normal counting. If Gate goes low counting gets
terminated and current count is latched till Gate pulse goes high again.
n
In this mode 8253 can be used as MonostableMultivibrator.GATE input is used as
g.i
trigger input.OUT will be initially high. OUT will go low on the CLK pulse following a
trigger to begin the one-shot pulse, and will remain low until the Counter reaches zero.
rin
OUT will then go high and remain high until the CLK pulse after the next trigger.
ee
In this mode, the device acts as a divide-by-n counter, which is commonly used to
gin
generate a real-time clock interrupt.Counting process will start the next clock cycle after
COUNT is sent. OUT will then remain high until the counter reaches 1, and will go low
for one clock pulse.OUT will then go high again, and the whole process repeats itself.
En
This mode is similar to mode 2. The duration of the high and low clock pulses of the
output will be different from mode 2.If „N „is the number loaded into the counter , the
output will be
Le
High for N/2 counts and N/2 counts for Low if N is Even.
High for (N+1)/2 counts and (N-1)/2 counts for Low if N is Odd.
w.
ww
95
When the GATE input is high , it will start counting. When the counter reaches 0, the
output will go low for one clock cycle – after that it will become high again, to repeat the
cycle.
3.Draw and explain the functional block diagram of 8259 Programmable Interrupt
Controller. (Apr/May-2015)
Functional Description:
The 8259 A has eight interrupt request inputs, IR0- IR7.The 8259 A uses its INT output
n
to interrupt the 8085A via INTR pin.The 8259Areceives interrupt acknowledge pulses
g.i
from the at its input.Vector address used by the 8085 A to transfer control to the service
subroutine of the interrupting device, is provided by the 8259 A on the data bus.
rin
The 8259A is a programmable device that must be initialized by command words sent
by the. After initialization the 8259A mode of operation can be changed by operation
command words. ee
gin
The descriptions of various blocks are,
Data bus buffer:
En
This 3- state, bidirectional 8-bit buffer is used to interface the 8259Ato the system data
bus. Control words and status information are transferred through the data bus buffer.
arn
Le
w.
ww
96
Read/Write & control logic:
The function of this block is to accept OUTPUT commands from the CPU. It contains
the initialization command word (ICW) register and operation command word OCW)
register which store the various control formats for device operation. This function block
also allows the status of 8259A to be transferred to the data bus.
Interrupt request register (IRR):
n
IRR stores all the interrupt inputs that are requesting service.It keeps track of which
g.i
interrupt inputs are asking for service. If an interrupt input is unmasked, and has an
interrupt signal on it, then the corresponding bit in the IRR will be set.
rin
Interrupt mask register (IMR):
The IMR is used to disable (Mask) or enable (Unmask) individual interrupt inputs.Each
ee
bit in this register corresponds to the interrupt input with the same number.The IMR
operation on the IRR. Maskingof higher priority input will not affect the interrupt request
gin
lines oflower priority.To unmask any interrupt the corresponding bit is set „0‟.
En
serviced.For each input that is currently being serviced the corresponding bit will be set
in the in service register.Each of these 3-reg can be read as status reg.Priority
Le
Resolver:
This logic block determines the priorities of the set in the IRR. The highest priority is
w.
selected and strobed into the corresponding bit of the ISR during pulse.
Cascade buffer/comparator:
ww
This function blocks stores and compare the address of all 8259A‟s in the register.The
associated 3-I/O pins (CAS0-CAS2) are outputs when8259A is used a master.As a
master, the 8259A sends the ID of the interrupting slave device onto the cas2-cas0.The
slave thus selected will send its pre-programmed subroutine address on to the data bus.
Priority Modes of 8259 :
The priority modes availaible in 8259 is
97
Fully Nested Mode
Automatic Rotation Mode
Specific Rotation Mode
Fully Nested Mode:
This is a general purpose mode in which all IR‟s are arranged from highest to
lowest ie.IR0 is the highest and IR7 is the lowest one.Any IR can be assigned the
highest priority,the priority sequence will begin at that IR.
Automatic Rotation Mode:
n
g.i
In this mode, a device which one is being serviced will be considered as a lowest
priority In the next time.
rin
Specific Rotation Mode:
This mode is similar to the automatic rotation mode except the user can select
ee
any IR for the lowest priority, thus fixing any other priorities.
End of Interrupts (EOI):
gin
After the completion of an interrupt service, the corresponding ISR bit needs to
be reset.This is called the End of Interrupt.(EOI).It can be issued in 3 formats.They are
En
drawback of this mode is that ISR does not have information on which IR is being
serviced.
ww
98
A7 A6 A5 1 LTIM ADI SNGL IC4
n
g.i
Initialization Command Word 2 (ICW2)
D7 D6 D5 D4 D3 D2 D1 D0
rin
A15/T7 A14/T6 A13/T5 A12/T4 A11/T3 A10 A9 A8
ee
gin
A15-A7 – Interrupt Vector Address (8085 mode)
T7 – T3 - Interrupt Vector Address (8086 mode)
En
arn
M7 M6 M5 M4 M3 M2 M1 M0
w.
99
The Keyboard/Display Controller 8279Intel‟s 8279 is a general purpose Keyboard
Display controller that simultaneously drives the display of a system and interfaces a
Keyboard with the CPU. The Keyboard Display interface scans the Keyboard to identify
if any key has been pressed and sends the code of the pressed key to the CPU.It also
transmits the data received from the CPU,to the display device.The Keyboard display
controllerchip8279provides1. A set of four scan lines and eight return lines for
interfacingkeyboards.2. A set of eight output lines for interfacing display.
n
I/OControlandDataBuffer
g.i
The I/O control section controls the flow of data to/from the 8279. The data buffer
interface the external bus of the system with internal bus of 8279. The pin Ao, RD and
rin
WR select the command, status or data read/write operations carried out by the CPU
with 8279.
ee
gin
En
arn
Le
w.
ww
100
Control and Timing Register and Timing Control
These registers store the keyboard and display modes and other operating conditions
programmed by CPU.The registers are written with Ao=1 and WR =0.The timing and
control unit controls the basic timings for the operation of the circuit.Scan Counter divide
down the operating frequency of 8279 to derive scan keyboard and scan display
frequencies.
Scan Counter
n
g.i
The Scan Counter has two modes to scan the key matrix and refresh the display.In the
Encoded mode, the counter provides a binary count that is to be externally decoded to
rin
provide the scan lines for keyboard and display.In the decoded scan mode, the counter
internally decodes the least significant 2 bits and provides a decoded 1 out of 4 scan on
ee
SL0-SL3.The Keyboard and Display both are in the same mode at a time.
gin
Return Buffers and Keyboard Debounce and Control
This section scans for a Key closure row-wise.If it is detected, the Keyboard debounce
En
unit debounces the key entry.After the debounce period, if the key continues to be
detected. The code of the Key is directly transferred to the sensor RAM along with
arn
RAM. Each key code of the pressed key is entered in the order of the entry, and in the
meantime, read by the CPU, till the RAM becomes empty. The status logic generates
ww
an interrupt request after each FIFO read operation till the FIFO is empty.In scanned
sensor matrix mode, this unit acts as sensor RAM.Each row of the sensor RAM is
loaded with the status of the corresponding row of sensors in the matrix.If a sensor
changes its state, the IRQ line goes high to interrupt the CPU.
101
Display Address Registers and Display RAM.
The Display address registers hold the addresses of the word currently being written or
read by the CPU to or from the display RAM.The contents of the registers are
automatically updated by 8279 to accept the next data entry by CPU. The 16-byte
display RAM contains the 16-byte of data to be displayed on the sixteen 7-seg displays
in the encoded scan mode.
DetailsofModesofOperation
Keyboard Modes
n
Scanned Keyboard Mode with 2 Key Lockout
g.i
In this mode of operation, when a key is pressed, a debounce logic comes into
rin
operation. The Key code of the identified key is entered into the FIFO with SHIFT and
CNTL status, provided the FIFO is not full.
ee
Scanned Keyboard with N-key Rollover
In this mode, each key depression is treated independently. When a key is pressed, the
gin
debounce circuit waits for 2 keyboard scans and then checks whether the key is still
depressed. If it is still depressed, the code is entered in FIFO RAM. Any number of keys
En
can be pressed simultaneously and recognized in the order, the Keyboard scan record
them.
arn
ScannedKeyboardSpecialErrorMode
This mode is valid only under the N-Key rollover mode. This mode is programmed using
Le
end interrupt/error mode set command. If during a single debounce period (two
Keyboard scan) two keys are found pressed, this is considered a simultaneous
w.
depression and an error flag is set. This flag, if set, prevents further writing in FIFO
butallows generation of further interrupts to the CPU for FIFO read.
ww
SensorMatrixMode
In the Sensor Matrix mode, the debounce logic is inhibited the 8-byte memory matrix.
The status of the sensor switch matrix is fed directly to sensor RAM matrix Thus the
sensor RAM bits contains the row-wise and column-wise status of the sensors in the
sensor matrix.
102
DisplayModes
There are various options of data display The first one is known as left entry mode or
type writer mode. Since in a type writer the first character typed appears at the left-most
position, while the subsequent characters appears successively to the right of the first
one.The other display format is known as right entry mode, or calculator mode, since
the calculator the first character entered appears at the right-most position and this
character is shifted one position left when the next character is entered.
n
g.i
1.LeftEntryMode
In the Left entry mode, the data is entered from the left side of the display unit.
rin
Address0 of the display RAM contains the leftmost display character and address 15
of the RAM contains the rightmost display character.
2.RightEntryMode ee
gin
In the right entry mode, the first entry to be displayed is entered on the rightmost
display.The next entry is also placed in the right most display but after the previous
En
All the Command words or status words are written or read with Ao = 1 and CS = 0 to or
from 8279.
Le
The format of the command word to select different modes of operation of 8279 is given
below with its bit definitions.
ww
D7 D6 D5 D4 D3 D2 D1 D0
0 0 0 D D K K K
D4 D3 Display Modes
103
0 0 8*8 Character Left Entry
0 1 16*8 Character Left Entry
1 0 8*8 Character Right Entry
1 1 16*8 Character Left Entry
D2 D1 D0 Keyboard Modes
n
0 0 0 Encoded Scan 2 Key lock
g.i
out
0 0 1 Decoded Scan 2 Key lock
rin
out
0 1 0 Encoded Scan N Key
rolloveree
gin
0 1 1 Decoded Scan N Key
rollover
En
Scan
w.
5.Draw the neat diagram ,explain the architecture and features of 8237Direct
Memory Access
Controller.
DMA Controller: A DMA controller is a device, usually peripheral to a CPU that is
programmed to perform a sequence of data transfers on behalf of the CPU.A DMA
104
controller can directly access memory and is used to transfer data from one memory
location to another, or from an I/O device to memory and vice versa.A DMA controller
manages several DMA channels, each of which can be programmed to perform a
sequence of these DMA transfers.A DMA request signal for each channel is routed to
the DMA controller.When the DMA controller sees a DMA request, it responds by
performing one or many data transfers from that I/O device into system memory or vice
versa.Channels must be enabled by the processor for the DMA controller to respond to
DMA requests.A DMA controller typically shares the system memory and I/O bus with
n
the CPU and has both bus master and slave capability. The diagram of DMA controller
g.i
architecture and how the DMA controller interacts with the CPU.In bus master mode,
rin
the DMA controller acquires the system bus (address, data, and control lines)from the
CPU to perform the DMA transfers. Because the CPU releases the system bus for the
ee
duration of the transfer, the process is sometimes referred to as cycle stealing.In bus
slave mode, the DMA controller is accessed by the CPU, which programs the
gin
DMAcontroller's internal registers to set up DMA transfers.The internal registers consist
of source and destination address registers and transfer count registers for each DMA
En
channel, as well as control and status registers for initiating, monitoring, and sustaining
the operation of the DMAcontroller.
arn
105
CS: CHIP SELECT:
Chip Select is an active low input used to enable the controller onto thedata bus for
CPU communications.
n
g.i
rin
ee
gin
En
arn
Le
This is an active high input which clears the Command, Status, Request, and
ww
Temporary registers, the First/Last Flip-Flop, and the mode register counter.The Mask
registeris set to ignore requests.
READY:
This signal can be used to extend the memory read and write pulses from the
82C37A to accommodate slow memories or I/O devices.
106
The active high Hold Acknowledge from the CPU indicates that it has
relinquished control of the system busses.
n
DREQ signal.RESET initializes these lines to active high.DREQ must be maintained
g.i
until the corresponding DACK goes active.DREQ will not be recognized while the clock
rin
is stopped.Unused DREQ inputs should be pulled High or Low(inactive) and the
corresponding mask bit set.
output the contents of a register to the CPU.The outputs are disabled and the inputs are
read during an I/O Write cycle when the CPU is programming the 82C37A control
arn
registers. During DMA cycles, the most significant 8-bits of the address are output onto
the data bus to be strobed into an external latch by ADSTB. In memory-to-memory
Le
operations, data from the memory enters the 82C37A on the data bus during the read-
from-memory transfer, then during the write-to memory transfer, the data bus outputs
w.
IOR: READ:
I/O Read is a bidirectional active low three-state line. In the Idle cycle, it is an
input control signal used by the CPU to read the control registers. In the active cycle, it
is an output control signal used by the 82C37A to access data from the peripheral
during a DMAWrite transfer.
107
IOW: WRITE:
I/O Write is a bidirectional active low three-state line.
In the Idle cycle, it is an input control signal used by the CPU to load information into
the 82C37A. In the active cycle, it is an output control signal used by the 82C37A to
load data to the peripheral during a DMA
Read transfer.
n
g.i
End of Process (EOP) is an active low bidirectional signal.The 82C37A allows an
external signal to terminate an active DMA service by pulling the EOP pin low.A pulse is
rin
generated by the 82C37A when terminal count (TC) for any channel is reached, except
for channel 0 in memory-to-memory mode.During memory-to-memory transfers , EOP
ee
will be output when the TC for channel 1 occurs.The EOP pin is driven by an open drain
transistor on-chip, and requires an external pull-up resistor to VCC. When an EOP pulse
gin
occurs, whether internally or externally generated, the 82C37A will terminate the
service,and if auto-initialize is enabled, the base registers will be written to the current
En
registers of that channel. The mask bit and TC bit in the status word will be set for the
currently active channel by EOP unless the channel is programmed for auto initialize. In
arn
A0-A3: ADDRESS: The four least significant address lines are bidirectional three-state
signals. In the Idle cycle, they are inputs and are used by the 82C37A to address the
w.
control register to be loaded or read. In the Active cycle, they are outputs and provide
the lower 4-bits of the output
ww
address.
A4-A7: ADDRESS: The four most significant address lines are three-state outputs and
provide 4-bits of address. These lines are enabled only during the DMA service.
108
HRQ: HOLD REQUEST: The Hold Request (HRQ) output is used to request control of
the system bus. When a DREQ occurs and the corresponding mask bit is clear, or a
software DMA request is made, the 82C37A issues HRQ. The HLDA signal then
informs the controller when access to the system busses is permitted. For stand-alone
operation where the 82C37A always controls the busses, HRQ may be tied to HLDA.
This will result in one S0 state before the transfer.
n
g.i
DMA acknowledge is used to notify the individual peripherals when one has been
granted a DMA cycle. RESET initializes them to active low.
rin
AEN: ADDRESS ENABLE:
ee
Address Enable enables the 8-bit latch containing the upper 8address bits onto the
system address bus. AEN can also be used to disable other system busdrivers during
gin
DMA transfers.AEN is active high.
ADSTB: ADDRESS STROBE:
En
This is an active high signal used to control latching of the upper address byte. During
block operations, ADSTB will only be issued when the upper address byte must be
arn
updated. ADSTB timing is referenced to the falling edge of the 82C37A clock.
Le
NC: NO CONNECT: Pin 5 is open and should not be tested for continuity.
109
Functional Description
The 82C37A direct memory access controller is designed to improve the data
transfer rate in systems which must transfer data from an I/O device to memory, or
move a block of memory to an I/O device. It will also perform memory-to-memory block
moves, or fill a block of memory with data from a single location. Operating modes are
provided to handle single byte transfers as well as discontinuous data streams, which
allows the 82C37A to control data movement.Memory-to-memory operations require
temporary internal storage of the data byte between generation of the source and
n
destination addresses, so memory-to-memory transferstake place at less than half the
g.i
rate of I/O operations, but still much faster than with centralprocessor techniques. The
rin
block diagram of the 82C37A consists of timing and control block, priority block, and
internal registers are the main components. The timing and control block derives
ee
internal timing from clock input, and generates external control signals. The Priority
Encoder block resolves priority contention between DMA channels requesting service
gin
simultaneously.
En
DMA Operation:
In a system, the 82C37A address and control outputs and data bus pins are basically
arn
connected in parallel with the system busses. An external latch is required for the upper
address byte. While inactive, the controller‟s outputs are in a high impedance state.
Le
When activated by a DMArequest and bus control is relinquished by the host, the
82C37A drives the busses and generates the control signals to perform the data
w.
transfer.The operation performed by activating one of the four DMA request inputs has
previously been programmed into the controller via the Command,Mode, Address, and
ww
110
enable recognition of a DMArequest (DREQ). The DREQ can either be a hardware
signal or a software command. Once initiated, the block DMA transfer will proceed as
the controller outputs the data address,simultaneous MEMR and IOW pulses, and
selects an I/O device via the DMA acknowledge(DACK) outputs.The data byte flows
directly from the RAM to the I/O device. After each byte is transferred, the address is
automatically incremented (or decremented) and the word count is decremented.The
operation is then repeated for the next byte. The controller stops transferring data when
the Word Count register underflows, or an external EOP is applied.
n
g.i
UNIT V
rin
MICRO CONTROLLER PROGRAMMING & PPLICATIONS
PART -A
ee
1. What are the applications of 8051 Microcontroller? (M/J ‘12’)
(i) Washing Machine control, (ii) Traffic Light control, (iii) Servo Motor control, (iv)
gin
Stepper motor control, (v) DC motor control.
En
Interrupts
111
Each increments the pc to the 1st byte of the instruction & pushes them in to the stack.
n
6.Write a program to find 2’s complement using 8051?
g.i
MOV A,R0
rin
CPL A
INC A
ee
7.Write a program to swap two numbers using 8051?
gin
MOV A,#data
SWAP A
En
arn
10.Write the coil sequence for a full step rotation of a stepper motor.(May/June
2013)
Clockwise B2 B1 A2 A1 Anti
D3 D2 D1 D0 clockwise
1 1 0 0
112
1 0 0 1
0 0 1 1
0 1 1 0
1 1 0 0
n
g.i
Sensing a key actuation
De bouncing the key and
rin
Generating key codes .
ee
12. How a keyboard matrix is formed in keyboard interface ?
The return lines RL0 to RL7 of 8279 are used to form the columns of keyboard matrix
gin
and decoded scan the scan lines SLO to SL3 of 8279 are used to form the rows of
keyboard matrix.
En
Inencoded scan mode, the output lines of external decoder are used as rows of
keyboard matrix.
arn
The process of sending a zero to each row of a keyboard matrix and reading the
columnsfor key actuation is called scanning. The scan time is the time taken by the
w.
processor to scan allthe rows one by one starting from first row and coming back to the
first row.
ww
113
15.How the speed of an electric motor is controlled?
The speed of an electric motor is controlled by controlling the power source of the
motor. To provide a variable power supply, a variable series resistance is placed
between the motor and supply.
PART -B
n
8051 has about 111 instructions. These can be grouped into the following categories.
g.i
1.Data Transfer instructions
rin
2. Arithmetic Instructions
3. Logical Instructions
ee
gin
4. Program Branching (Control transfer) Instructions
En
The data transfer instruction is used to (copy) transfers data from source location
to destination location.
Le
Syntax:
w.
MOV Rn , Rn
ww
Ex:MOV A,R0
Syntax:
MOV A, direct
Ex:MOV A,40H
114
This instruction transfers data from 40H location to Accumulator.
Syntax:
MOV A, @Ri
Accumulator.
n
g.i
Syntax:
rin
MOV A, #data
ee
This instruction transfers immediate data 40H to Accumulator.
gin
En
2.Arithmetic Instructions:
Thearithmeticinstructionsincludesaddition,subtraction,multiplication,division,increment,d
arn
Syntax:
ADD Rn , Rn
w.
Ex:ADD A,R0
ww
This instruction adds data from R0 register and Accumulator and finally result is
stored in Acc.
Syntax:
ADD A, direct
Ex:ADD A,40H
115
This instruction adds data from 40H location and Accumulator and finally result is
stored in Acc.
Syntax:
ADD A, @Ri
This instruction adds data from the content of R0 as a location and Accumulator
n
g.i
and finally result is stored in Acc..
Syntax:
rin
ADD A, #data
3.Logical Instructions
arn
Syntax:
Le
ANLRn , Rn
w.
Ex:ANL A,R0
ww
This instruction AND with data from R0register,Accumulator and finally result is
stored in Acc.
Syntax:
ANL A, direct
Ex:ANL A,40H
116
This instruction AND with data from 40H location,Accumulator and finally result is
stored in Acc.
Syntax:
ANL A, @Ri
n
g.i
and finally result is stored in Acc..
Syntax:
rin
ANL A, #data
ACALL addr11
AJMP addr11
w.
Compare with A with memory location content if not equal then jump to relative address.
JC rel
117
Jump if carry to relative address
JNC rel
n
2.Direct Addressing.
g.i
3.Register Indirect Addressing.
4.Immediate Addressing
rin
5.Base plus Index Register Addressing.
1.Register Addressing:
ee
gin
This way of addressing accesses the bytes in the current register bank.
Data is available in the register specified in the instruction.
The register bank is decided by 2 bits of ProgramStatusWord (PSW).
En
Example-
ADD A, R0
arn
2.Direct Addressing:
The address of the data is available in the instruction.
w.
Example -
ww
MOV A, 88H;
Moves the content of address 88Hto A.
118
MOV A, @R0
Moves content of address pointed by R0 to A .
4.Immediate Addressing:
Data is immediately available in the instruction.
Example -
ADD A, #77H
Adds 77 H to A and stores in A
n
g.i
5.Base plus Index Register Addressing.
rin
The content of base register and index register content is added to locate the
data.
Example - ee
gin
MOVC A, @A+DPTR
Moves content of address pointed by A+DPTR to A
En
3. Draw the schematic for interfacing a stepper motor with 8051 microcontroller
arn
and write 8051 ALP for changing speed and direction of motor.
The complete board consists of transformer, control circuit, keypad and stepper motor .
Le
The circuit has inbuilt 5 V power supply so when it is connected with transformer it will
give the supply to circuit and motor both.
w.
The 8 Key keypad is connected with circuit through which user can give the command
ww
to control stepper motor. The control circuit includes micro controller 89C51, indicating
LEDs, and current driver chip ULN2003A. By giving different commands the stepper
motor can run clockwise, run anticlockwise, increase/decrease RPM,increase/decrease
revolutions, stop motor, change the mode, etc. Stepper motor has four coils.One end of
each coil is tied together and it gives common terminal which is always connected with
119
positive terminal of supply. The other ends of each coil are given for interface. Specific
color code may also be given.
First Coil L1-Orange
Second Coil L2 -Brown
Third Coil L3 - Yellow
Fourth Coil L4 - Black
Common Terminal -Red
By means of controlling a stepper motor operation we can
n
1. Increase or decrease the RPM (speed) of it
g.i
2. Increase or decrease number of revolutions of it
rin
3. Change its direction means rotate it clockwise or anticlockwise
ee
gin
En
arn
Le
w.
ww
n
g.i
Clockwise B2 B1 A2 A1 Anti
D3 D2 D1 D0 clockwise
rin
1 1 0 0
1 0 0 1
ee 0 0 1 1
gin
0 1 1 0
1 1 0 0
En
The circuit consists of very few components. The major components are 7805, 89C51
and ULN2003A.
arn
Connections:-
1. The transformer terminals are given to bridge rectifier to generate rectified DC.
2. It is filtered and given to regulator IC 7805 to generate 5 V pure DC. LED
Le
3. All the push button micro switches J1 to J8 are connected with port P1 as shown to
form
ww
serial keyboard.
4. 12 MHz crystal is connected to oscillator terminals of 89C51 with two biasing
capacitors.
5. All the LEDs are connected to port P0 as shown
6. Port P2 drives stepper motor through current driver chip ULN2003A.
7. The common terminal of motor is connected to Vcc and rest all four terminals are
connected to port P2 pins in sequence through ULN chip.
121
4. Draw the schematic for interfacing a servo motor with 8051 microcontroller and
write for servo motor control. (Nov/Dec 2014)
Servo motors are self-contained mechanical devices that are used to control the
machines with machines. Usually the servo motor is used to control the angular motion
among from 0° to 180° and 0° to 90°. The servo motor working principle based on the
PWM (pulse width modulation) pulses.
A Servo motor is one of the most commonly used motor for precise angular
n
movement. The advantage of using a servo motor is that the angular position of the
g.i
motor can be controlled without any feedback mechanism.
rin
Pulse Width Modulated (PWM) waves are used as control signals and the angular
position is definite by the width of the pulse at the control input. Servo motor having
ee
angle of rotation from 0-180° and angular position can be controlled by varying the duty
cycles among 1ms to 2ms.The control of servo motor connected port0 of 8051
gin
microcontroller. The 11.0592MHz crystal oscillator is used to provide the clock pulsed to
the microcontroller and 22pf ceramic capacitors used to stabilize the operation of
En
crystal. 10KΩ and 10uf capacitor is used to provide the power on reset to the
microcontroller.
arn
Servo motor working principle mainly depends upon duty cycles. It uses Pulse Width
w.
Modulated (PWM) waves as control signals. The angle of rotation is resolute by the
pulse width of the control pin.
ww
122
run at high speed and low torque. We assembled shaft and gear connected to DC
motors then we can increase and decrease the motor speed gradually.
n
g.i
rin
ee
gin
En
arn
The position sensor senses the location of the shaft from its fixed position and sends
w.
the information to the control circuit. The control circuit decodes the signals accordingly
ww
from the position sensor and compares the actual location of the motors with the
preferred position and accordingly controls the direction of rotation of the DC motor to
get the necessary position. Generally the servo motor requires 4.8V to 6 V DC supply.
123
5. Draw the schematic for interfacing a washing machine control with 8051
microcontroller and write8051 ALP for washing machine control. (Nov/Dec 2014)
A washing machine is an electronic device that is designed to wash laundry like clothes,
sheets, towels and other bedding. A washing machine is built with two steel tubs which
are the inner tub and the outer tub whose main role is to prevent water from spilling to
other parts of the machine.
n
g.i
rin
ee
gin
En
arn
Le
w.
124
Program select knob:- Heavy Clothes very dirty Normal Normal dirty clothes LIGHT
For light dirty clothes Delicate For silk clothes
Machine Operations:-
• Fill:- water will be filled by the pump as per the load knob selected.
• Agitate:- The wash basket will rotate in a clockwise direction for 10 revolutions,
After that basket will stop for 2 seconds, then rotate 10 revolutions in anticlockwise
direction. The process will be continued for specified minutes in cycle table.Drain:- After
n
agitation, the water and detergent are drained.
g.i
Spin:- During spin, agitator will be stationary, only the basket will rotate at
rin
high speed. Then the moisture of clothes are removed through holes in
the inner metallic basket.
Machine Indicators:- ee
gin
Machine ON
LED ON After completion of washing cycle, buzzer sound will be
En
generated.
arn
Washing cycle :
Heavy
Le
Normal
Light
w.
Delicate
ww
125
Medium level
Low level
Drain
Washing machine ON LED
Heavy
Normal
Light
n
Delicate
g.i
Hot
Normal Buzzer sound Basket
rin
Washing Machine Operation SinalsInput/Output :
ee
The various Operation Signals are connected to microcontroller Input/output Port.
gin
Load / water level select
Water inlet
Program select
En
Machine ON
arn
Fill water
Agitation control
Output
Le
Spin
w.
Washing complete
ww
126
If P1.0 is set,jump to HEAVY LOOP_1 JNB SJMP P1.1,LOOP_2 NORMAL Check
progsetng knob for normal
If P1.1 is not set.jump to LOOP_2
If P1.1 is set, jump to NORM LOOP_2 JNB SJMP P1.2,LOOP_3 Chckprogsetng knob
for normal.
If P1.2 is not set,jump to LOOP_3
If P1.2 is set,jump to LIGHT LOOP_3 JNB SJMP P1.3,LOOP_4 DELICATE Check prog
set knob for delicate.
n
g.i
If P1.3is not set,jump to LOOP_4 If P1.2 is set,jump to delicate DISPLAY SETB P2.7
Indicate the completion of wash cycle. LOOP_4 NOP LJMP 0000 End of program
rin
ee
gin
En
arn
Le
w.
ww
127