mpmc-unit-1
mpmc-unit-1
MPMC UNIT-1
UNIT -I
PART-1 8085 MICROPROCESSOR
Introduction
Microcomputer: The term microcomputer is generally synonymous with
personal computer, or a computer that depends on a microprocessor.
Microcomputers are designed to be used by individuals, whether in
the form of PCs, workstations or notebook computers.
A microcomputer contains a CPU on a microchip (the
microprocessor), a memory system (typically ROM and RAM), a bus
system and I/O ports, typically housed in a motherboard.
Microprocessor: A silicon chip that contains a CPU. In the world of personal
computers, the terms microprocessor and CPU are used interchangeably.
A microprocessor (sometimes abbreviated µP) is a digital electronic
component with miniaturized transistors on a single semiconductor
integrated circuit (IC).
One or more microprocessors typically serve as a central processing
unit (CPU) in a computer system or handheld device.
Microprocessors made possible the advent of the microcomputer.
At the heart of all personal computers and most working stations
sits a microprocessor.
Microprocessors also control the logic of almost all digital devices,
from clock radios to fuel-injection systems for automobiles.
Three basic characteristics differentiate microprocessors:
Instruction set: The set of instructions that the microprocessor can
execute.
Bandwidth: The number of bits processed in a single instruction.
Clock speed: Given in megahertz (MHz), the clock speed determines
how many instructions per second the processor can execute.
In both cases, the higher the value, the more powerful the CPU. For
example, a 32-bit microprocessor that runs at 50MHz is more
powerful than a 16-bit microprocessor that runs at 25MHz.
8085 Microprocessor
The Intel 8085 is an 8-bit microprocessor introduced by Intel in 1977. It
was binary compatible with the more-famous Intel 8080 but required less
supporting hardware, thus allowing simpler and less expensive microcomputer
systems to be built. The "5" in the model number came from the fact that the
8085 requires only a +5-Volt (V) power supply rather than the +5 V, −5 V and
+12 V supplies the 8080 needed. The main features of 8085 μP are:
It is an 8-bit microprocessor.
It is manufactured with N-MOS technology.
It has 16-bit address bus and hence can address up to 216= 65536
bytes (64KB) memory locations through A0–A15.
The first 8 lines of address bus and 8 lines of data bus are
multiplexed AD0–AD7
Data bus is a group of 8 lines D0–D7.
It supports external interrupt request.
A 16-bit program counter (PC)
A 16-bit stack pointer (SP)
Six 8-bit general purpose register arranged in pairs: BC, DE, HL.
It requires a signal +5V power supply and operates at 3.2 MHZ
single phase clock.
It is enclosed with 40 pins DIP (Dual in line package).
8085 Architecture
8085 consists of various units as shown in Fig. 1 and each unit performs its
own functions. The various units of a microprocessor are listed below
Accumulator
Arithmetic and logic Unit
General purpose register
Program counter
Stack pointer
Temporary register
Flags
Instruction register and Decoder
2
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
Accumulator
Accumulator is nothing but a register which can hold 8-bit data. Accumulator
aids in storing two quantities. The data to be processed by arithmetic and logic
unit is stored in accumulator. It also stores the result of the operation carried out
by the Arithmetic and Logic unit. The accumulator is also called an 8-bit register.
The accumulator is connected to Internal Data bus and ALU (arithmetic and logic
unit). The accumulator can be used to send or receivedata from the Internal Data
bus.
3
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
4
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
Yes. Stack pointer maintains the address of the last byte that is entered into
stack.
Each time when the data is loaded into stack, Stack pointer gets
decremented. Conversely it is incremented when data is retrieved from stack.
Temporary Register
As the name suggests this register acts as a temporary memory during the
arithmetic and logical operations. Unlike other registers, this temporary register
can only be accessed by the microprocessor and it is completely inaccessible to
programmers. Temporary register is an 8-bit register.
Flags
Flags are nothing but a group of individual Flip-flops. The flags are mainly
associated with arithmetic and logic operations. The flags will show either a
logical (0 or 1) (i.e.) a set or reset depending on the data conditions in
accumulator or various other registers. A flag is actually a latch which can hold
some bits of information. It alerts the processor that some event has taken place.
D7 D6 D5 D4 D3 D2 D1 D0
S Z AC P CY
Fig. Flag Register
Intel processors have a set of 5 flags.
1. Carry flag
2. Parity flag
3. Auxiliary carry flag
4. Zero flag
5. Sign flag
Consider two binary numbers.
For example
1100 0000
1000 0000
When we add the above two numbers, a carry is generated in the most
significant bit. The number in the extreme right is least significant bit, while the
number in extreme left is most significant bit. So, a ninth bit is generated due to
the carry. So how to accommodate 9th bit in an 8-bit register?
For this purpose, the Carry flag is used. The carry flag is set whenever a carry
is generated and reset whenever there is no carry. But there is an
5
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
auxiliary carry flag? What is the difference between the carry flag and auxiliary
carry flag?
Let’s discuss with an example. Consider the two numbers given below
0000 1100
0000 1001
When we add both the numbers a carry is generated in the fourth bit from
the least significant bit. This sets the auxiliary carry flag. When there is no carry,
the auxiliary carry flag is reset. So, whenever there is a carry in the most
significant bit Carry flag is set. While an auxiliary carry flag is set only when a
carry is generated in bits other than the most significant bit.
Parity checks whether it’s even or add parity. This flag returns a 0 if it is
odd parity and returns a 1 if it is an even parity. Sometimes they are also called
as parity bit which is used to check errors while data transmission is carried out.
Zero flag shows whether the output of the operation is 0 or not. If the value
of Zero flag is 0 then the result of operation is not zero. If it is zero the flag returns
value 1.
Sign flag shows whether the output of operation has positive sign or negative
sign. A value 0 is returned for positive sign and 1 is returned for negative sign.
6
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
7
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
data. If READY is low, the CPU will wait an integral number of clock
cycle for READY to go high before completing the read or write cycle.
READY must conform to specified setup and hold times.
Interrupt control
As the name suggests this control interrupts a process. Consider that a
microprocessor is executing the main program. Now whenever the interrupt
signal is enabled or requested the microprocessor shifts the control from main
program to process the incoming request and after the completion of request,
the control goes back to the main program. For example, an Input/output device
may send an interrupt signal to notify that the data is ready for input. The
microprocessor temporarily stops the execution of main program and transfers
control to I/O device. After collecting the input data, the control is transferred
back to main program. Interrupt signals present in 8085 are:
INTR
RST 7.5
RST 6.5
RST 5.5
TRAP
INTR is maskable 8080A compatible interrupt. When the interrupt occurs
the processor fetches from the bus one instruction, usually one of these
instructions: One of the 8 RST instructions (RST0 - RST7). The processor saves
current program counter into stack and branches to memory location N * 8
(where N is a 3 - bit number from 0 to 7 supplied with the RST instruction).
8
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
9
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
10
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
11
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
Timing Diagrams
Timing diagram is the display of initiation of read/write and transfer of data
operations under the control of 3-status signals IO/M’, S1 and S0. Each machine
cycle is composed of many clock cycles. Since, the data and instructions, both are
stored in the memory, the µP performs fetch operation to read the instruction or
data and then execute the instruction. The 3-statussignals: IO / M’, S1 and S0 are
generated at the beginning of each machine cycle. The unique combination of
these 3-status signals identifies read or write operation and remain valid for the
duration of the cycle. Thus, time taken byany µP to execute one instruction is
calculated in terms of the clock period. The execution of instruction always
requires read and writes operations to transfer data to or from the µP and
memory or I/O devices. Each read/ write operation constitutes one machine
cycle. Each machine cycle consists of many clock periods/ cycles, called T-states.
12
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
The 1st machine cycle of any instruction is always an Opcode fetch cycle in
which the processor decides the nature of instruction. It is of at least 4-states. It
may go up to 6-states.
In the opcode fetch cycle, the processor comes to know the nature of the
instruction to be executed. The processor during (M1 cycle) puts the program
counter contents on the address bus and reads the opcode of the instruction
through read process. The T1, T2, and T3 clock cycles are used for the basic
memory read operation and the T4 clock and beyond are used for its
interpretation of the opcode. Based on these interpretations, the µP comes to
know the type of additional information/data needed for the execution of the
instruction and accordingly proceeds further for 1 or 2-machine cycle of memory
read and writes.
Instruction Fetch (FC)⇒An instruction of 1 or 2 or 3-bytes is extracted from
the memory locations during the fetch and stored in the µP’s instruction register.
Instruction Execute (EC)⇒The instruction is decoded and translated into
specific activities during the execution phase.
Opcode Fetch
The 1st step in communicating between the microprocessor and memory is
reading from the memory. This reading process is called opcode fetch. The
13
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
process of opcode fetch operation requires minimum 4-clock cycles T1, T2, T3,
and T4and is the 1st machine cycle (M1) of every instruction. In order to
differentiate between the data byte pertaining to an opcode or an address, the
machine cycle takes help of the status signal IO/ M, S1, and S0. The IO/ M= 0
indicates memory operation and S1 = S0 = 1 indicates Opcode fetch operation.
The opcode fetch machine cycle M1 consists of 4-states (T1, T2, T3, and T4).
The 1st 3-states are used for fetching (transferring) the byte from the memory
and the 4th-state is used to decode it.
14
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
IO mapped I/O
In this method separate address space is given to IO devices. Each IO device
is given an 8-bit address. Hence maximum 256 devices can be interfaced to the
processor. The address range for the IO devices is 00H-FFH. IO control signals
are used to perform read, write operations. For reading data from IO device or
writing data to IO device IN, OUT instructions needs to be used. Arithmetic and
logical operations can’t be performed directly on IO devices as in memory
mapped IO. IO devices can be interfaced, by using buffers for simple IO i.e. by
using address decoding circuit to enable buffer. For handshake IO or to interface
more peripherals ICs like 8255 peripheral programmable interface (PPI) can be
used.
15
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
16
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
17
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
PART-2
8086 MICROPROCESSOR
Introduction
The 8086 is a 16-bit microprocessor intended to be used as the CPU in a
microcomputer. The term “16-bit” means that its arithmetic logic unit, internal
registers, and most of its instructions are designed to work 16-bit binary words.
It has 16-bit data bus and 20-bit address bus.
Words will be stored in two consecutive memory locations. If the first byte of
a word is at an even address, the 8086 can read the entire word in one operation.
If the first byte of the word is at an odd address, the 8086 will read the first byte
in one operation, and the second byte in another operation.
Features
8086 is a 40 pin IC.
It is a 16-bit processor.
Its operating voltage is 5 volts.
Its operating frequency is 5 MHz
The total memory addressing capacity is 1MB (external).
It has 16-bit data bus and 20-bit address bus.
It has fourteen 16-bit registers.
It has around 20000 transistors in its circuitry and it is made in
HMOS technology.
Pipelining improves the performance of the processor so that
operation is faster.8086 uses two stage of pipelining.
First is Fetch Stage and the second is Execute Stage.
Fetch stage that prefetch upto 6 bytes of instructions stores them in
the queue.
Execute stage that executes these instructions.
Operates in two modes: 8086 operates in two modes:
18
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
Pin Diagram
The 8086 signals can be categorized in three groups. The first are the signals
having common functions in minimum as well as maximum mode, the second are
the signals which have special functions in minimum mode and third are the
signals having special functions for maximum mode
The following signal description are common for both the minimum and
maximum modes.
AD15-AD0
These are the time multiplexed memory I/O address and data lines. Address
remains on the lines during T1 state, while the data is available on the data bus
during T2, T3, TW and T4. Here T1, T2, T3, T4 and TW are the clock states of a
machine cycle. TW is a wait state. These lines are active high and float to a
tristate during interrupt acknowledge and local bus hold acknowledgecycles.
19
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
A19/S6, A18/S5, A17/S4, A16/S3: These are the time multiplexed address
and status lines. During T1, these are the most significant address lines or
memory operations. During I/O operations, these lines are low. During memory
or I/O operations, status information is available on those lines for T2, T3, TW
and T4.The status of the interrupt enable flag bit(displayed on S5) is updated at
the beginning of each clock cycle. The S4 and S3 combined, indicate which
segment register is presently being used for memory accesses as shown in the
following table.These lines float to tri-state off during the local bus hold
acknowledge. The status line S6 is always low(logical). The address bits are
separated from the status bits using latches controlled by the ALE signal.
RD-Read: Read signal, when low, indicates the peripherals that the
processor is performing a memory or I/O read operation. RD is active low and
20
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
shows the state for T2, T3, TW of any read cycle. The signal remains in high-
impedance during the 'hold acknowledge'.
Ready: This is the acknowledgement from the slow devices or memory that
they have completed the data transfer. The signal made available by the devices
is synchronized by the 8284A clock generator to provide ready input to the 8086.
The signal is active high.
Reset: This input causes the processor to terminate the current activity and
start execution from FFFF0H. The signal is active high and must be active for at
least four clock cycles. It restarts execution when the RESET returns low. RESET
is also internally synchronized.
CLK-Clock Input: The clock input provides the basic timing for processor
operation and bus control activity. It’s an asymmetric square wave with 33%
duty cycle. The range of frequency for different 8086 versions is from 5MHz to
10MHz.
VCC : +5V power supply for the operation of the internal circuit. GND ground
for the internal circuit.
21
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
MN/MX: The logic level at this pin decides whether the processor is to
operate in either minimum (single processor) or maximum (multiprocessor)
mode.
The following pin functions are for the minimum mode operation of 8086.
DEN-Data Enable This signal indicates the availability of valid data over the
address/data lines. It is used to enable the transceivers (bidirectional buffers) to
separate the data from the multiplexed address/data signal. It is active from the
middle of T2 until the middle of T4 DEN is in high-impedance state during 'hold
acknowledge' cycle.
22
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
control lines. When the processor detects the HOLD line low, it lowers the HLDA
signal. HOLD is an asynchronous input, and it should be externally synchronized.
If the DMA request is made while the CPU is performing a memory or I/O cycle,
it will release the local bus during T 4 provided:
1. The request occurs on or before T 2 state of the current cycle.
2. The current cycle is not operating over the lower byte of a word (or
operating on an odd address).
3. The current cycle is not the first acknowledge of an interrupt
acknowledge sequence.
4. A Lock instruction is not being executed.
The following pin functions are applicable for maximum mode operation of
8086.
S2, S1, S0 -Status Lines: These are the status lines which reflect the type of
operation, being carried out by the processor. These become active during T4 of
the previous cycle and remain active during T1 and T2 of the current bus cycle.
The status lines return to passive state during T3 of the current bus cycle so that
they may again become active for the next bus cycle during T4. Any change in
these lines during T3 indicates the starting of a new cycle, and return to passive
state indicates end of the bus cycle. These status lines are encoded in the
following table.
Table 3.3 Status Lines Indication
S2 S1 S0 Indication
0 0 0 Interrupt acknowledge
0 0 1 Read I/O port
0 1 0 Write I/O port
0 1 1 Halt
1 0 0 Code access
1 0 1 Read memory
1 1 0 Write memory
1 1 1 Passive
Lock
This output pin indicates that other system bus masters will be prevented
from gaining the system bus, while the LOCK signal is low. The LOCK signal is
activated by the 'LOCK' prefix instruction and remains active until the
completion of the next instruction. This floats to tri-state off during "hold
23
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
24
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
Instruction Queue
To increase the execution speed, BIU fetches as many as six instruction bytes
ahead to time from memory. The prefetched instruction bytes are held for the EU
in a first in first out group of registers called an instruction queue. When the EU
is ready for its next instruction, it simply reads the instruction from this
instruction queue. This is much faster than sending out an address to the system
memory and to send back the next instruction byte. Fetching the next instruction
while the current instruction executes is called pipelining.
25
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
Segment Registers
The BIU contains four 16-bit segment registers. They are: the extra segment
(ES) register, the code segment (CS) registers, the data segment (DS) registers,
and the stack segment (SS) registers. These segment registers are used to hold
the upper 16 bits of the starting address for each of the segments. The part of a
segment starting address stored in a segment register is often called the segment
base.
1. Code Segment (CS): The CS register is used for addressing a memory
location in the Code Segment of the memory, where the executable
program is stored.
2. Data Segment (DS): The DS contains most data used by program. Data
are accessed in the
Data Segment by an offset address or the content of other register that
holds the offset address.
3. Stack Segment (SS): SS defined a section of memory to store addresses
and data while a subprogram executes.
4. Extra Segment (ES): ES is additional data segment that is used by some
of the string to hold the extra destination data.
26
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
Flag Register
A 16-bit flag register is a flip-flop which indicates some condition produced
by the execution of an instruction or controls certain operations of the EU. They
are modified automatically by CPU after mathematical operations. It has 9 flags
and they are divided into two categories:
1. Conditional Flags
2. Control Flags
Conditional Flags
Conditional flags represent result of last arithmetic or logical instructions.
Carry Flag (CF): This flag will be set to one if the arithmetic
operation produces the carry in MSB position. It is also used in
multiple-precision arithmetic.
Auxiliary Flag (AF): If an operation performed in ALU generates a
carry/barrow from lower nibble (i.e. D0 – D3) to upper nibble (i.e. D4
– D7), the AF flag is set i.e. carry given by D3 bit to D4 is AF flag. This
is not a general-purpose flag; it is used internally by the processor to
perform Binary to BCD conversion.
Parity Flag (PF): This flag is used to indicate the parity of result. If
lower order 8-bits of the result contains even number of 1’s, the
Parity Flag is set to one and for odd number of 1’s, the Parity Flag is
reset i.e. zero.
Zero Flag (ZF): It is set to one; if the result of arithmetic or logical
operation is zero else it is reset.
Sign Flag (SF): In sign magnitude format the sign of number is
indicated by MSB bit. If the result of operation is negative, sign flag
is set to one.
27
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
Control Flags
Control flags are intentionally set or reset to control certain operations of the
processor with specific instructions put in the program from the user. Control
flags are as follows:
1. Trap Flag (TF): It is used for single step control. It allows user to
execute one instruction of a program at a time for debugging. When
trap flag is set, program can be run in single step mode.
2. Interrupt Flag (IF): It is an interrupt enable/disable flag, i.e. used
to allow/prohibit the interruption of a program. If it is set, the
maskable interrupt is enabled and if it is reset, the interrupt is
disabled.
3. Direction Flag (DF): It is used in string operation. If it is set, string
bytes are accessed from higher memory address to lower memory
address. When it is reset, the string bytes are accessed from lower
memory address to higher memory address.
28
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
29
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
Interrupts
An interrupt is the method of processing the microprocessor by peripheral
device. An interrupt is used to cause a temporary halt in the execution of
program. Microprocessor responds to the interrupt with an interrupt service
routine, which is short program or subroutine that instructs the microprocessor
on how to handle the interrupt.
There are two basic type of interrupt, maskable and non-maskable, non-
maskable interrupt requires an immediate response by microprocessor, it
usually used for serious circumstances like power failure. A maskable interrupt
is an interrupt that the microprocessor can ignore depending upon some
predetermined upon some predetermined condition defined by status register.
Hardware Interrupt
The primary sources of interrupts, however, are the PCs timer chip,
keyboard, serial ports, parallel ports, disk drives, CMOS real-time clock, 4 mouse,
sound cards, and other peripheral devices. These devices connect to an Intel
8259A programmable interrupt controller (PIC) that prioritizes the interrupts
and interfaces with the 80x86 CPU. The 8259A chip adds considerable
complexity to the software that processes interrupts.
Maskable Interrupt
Whenever an external signal activates the INTR pin, the microprocessor will
be interrupted only if interrupts are enabled using set interrupt Flag instruction.
If the interrupts are disabled using clear interrupt Flag instruction, the
microprocessor will not get interrupted even if INTR is activated. That is,
31
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
INTR can be masked. INTR is a non-vectored interrupt, which means, the 8086
does not know where to branch to service the interrupt. The 8086 has to be told
by an external device like a Programmable Interrupt controller regarding the
branch. Whenever the INTR pin is activated by an I/O port, if Interrupts are
enabled and NMI is not active at that time, the microprocessor finishes the
current instruction that is being executed and gives out a ‘0’ on INTA pin twice.
When INTA pin goes low for the first time, it asks the external device to get ready.
In response to the second INTA the microprocessor receives the 8 bits, say N,
from a programmable Interrupt controller. The action taken is as follows.
1. Complete the current instruction.
2. Activates INTA output, and receives type Number, say N
3. Flag register value, CS value of the return address & IP value of their
turn address are pushed on to the stack.
4. IP value is loaded from contents of word location N x 4.
5. CS is loaded from contents of the next word location.
6. Interrupt Flag and trap Flag are reset to 0.
At the end of the ISS, there will be an IRET instruction. This performspopping
off from the stack top to IP, CS and Flag registers. Finally, the register values
which are also saved on the stack at the start of ISS, are restored fromthe stack
and a return to the interrupted program takes place using the IRET instruction.
Software Interrupt
There are instructions in 8086 which cause an interrupt. They are
INT instructions with type number specified.
INT 3, Break Point Interrupt instruction.
INTO, Interrupt on overflow instruction.
These are instructions at the desired places in a program. When one of these
instructions is executed a branch to an ISS takes place. Because their execution
results in a branch to an ISS, they are called interrupts. Software Interrupt
instructions can be used to test the working of the various Interrupt handlers-
For example, we can execute INTO instruction to execute type 0 ISS, without
really having to divide a number by 0. Similarly, we can execute INT 2 instruction
to test NMI ISS.
32
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
33
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
Reset
Processor initialization or start up is accomplished with activation (HIGH)
of the RESET pin. The 8086 RESET is required to be HIGH for greater than 4
CLK cycles. The 8086 will terminate operations on the high-going edge of RESET
and will remain dormant as long as RESET is HIGH. The low-going transition of
RESET triggers an internal reset sequence for approximately 10 CLK cycles. After
this interval the 8086 operates normally beginning with the instruction in
absolute location FFFF0H.
34
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
35
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
36
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
37
Downloaded by TEJASWINI VEERAVALLI ([email protected])
lOMoARcPSD|49882446
38
Downloaded by TEJASWINI VEERAVALLI ([email protected])