You are on page 1of 7

CHAPTER NO - 1: Introduction to Microprocessor, Components of a

microprocessor: Registers, ALU and control & timing, system bus (data,
address, and control bus), Microprocessor systems with bus
organization

1. Explain system bus of 8085 microprocessor.


2. How can you determines that Microprocessor is an 8, 16 or 32 bit.
3. List and specify the various features of microprocessor, memory and
I/O devices including concepts of system bus.

CHAPTER NO - 2:Microprocessor Architecture and operations,


memory, I/O Devices, Memory & I/O operations

1. Explain the generation of control signal.


2. State the importance of X1 and X2 pins of an 8085 microprocessor.
3. Draw and Explain pin out diagram of 8085 microprocessor.
4. State the uses of program counter and stack pointer registers of an
8085 microprocessor.
5. Write notes on general purpose and special purpose register of
8085.Draw schematic to generate read/write control signal for
memory and input/output of 8085 microprocessor.
6. Write notes on status flag register. Also write down condition under
which the flag bits affected
7. Differentiate between memory-mapped I/O and peripheral-mapped
I/O
8. Calculate the address lines required for 8K-byte memory chip.

YouTube, Instagram, telegram, twitter, Facebook: Priyeshsir Vidhyapeeth


CHAPTER NO - 3: 8085 Microprocessor Architecture, Address, Data and
Control Buses, 8085 Pin Functions, Demultiplexing of Buses,
Generation of Control Signals, Instruction Cycle, Machine Cycles,
TStates, Memory Interfacing

1. Explain following pins of an 8085 microprocessor in brief: 1. ALE 2.


TRAP 3. READY 4. HLDA
2. Explain 8085 Programming Model and Flag Register.
3. Draw and Explain block diagram of 8085 microprocessor
architecture.
4. Explain the role of clock in Microprocessor.
5. Sketch and explain the timing waveform for fetch operation
6. Explain timing diagram of the memory write cycle?
7. Define the terms: T-state, Machine cycle, Instruction Cycle
8. Explain One byte, Two byte, Three byte instruction.
9. Draw the timing diagram of MOV M, D instruction of an 8085
microprocessor.
10.Draw the timing diagram of MVI A, 32H instruction of an 8085
microprocessor
11.Draw timing diagram of following instruction i)STA 2050 ii)MVI A,32
iii)LDAX B iv)SHLD 1234H v)MVI M,43H vi)DAD B vii)INX D viii)IN 05H
ix)OUT 01H x)CALL 507BH
12.Explain following instructions with no. of bytes, machine cycles and
T-states required for execution: 1. SHLD 2. RAL
13.Explain following instructions with no. of bytes, machine cycles and
T-states required for execution: 1. CALL 2. CPI.
14.Define the followings: Machine Cycle, T-state, JC, CMP, RET, SBB, STC
15.Explain the following pins of the 8085 microprocessors: X1-X2, INTR,
RESET OUT.
16.Explain 8085 Programming Model.
17.Draw the Pin Diagram of 8085 microprocessor. Explain important
pins used for interfacing with the memory and peripherals.

YouTube, Instagram, telegram, twitter, Facebook: Priyeshsir Vidhyapeeth


Q-7

http://www.faadooengineers.com/online-study/post/cse/microprocessor-and-interf
acing/1030/8085-instruction-cycle-machine-cycle-fetch-and-execute-cycles#!

18.Identify the machine cycles in the following instructions. (1) STA 16


bit (2) CALL 16 bit (3) JNZ 16 bit.
19.Draw the interfacing of a two 4KB static RAMs having starting
addresses 8000h, with 8085 microprocessors. Use minimum number
of interfacing chips for the design.
20.Draw the interfacing of a 4K EPROM having a starting address 2000H
with 8085 microprocessor.
21.Draw the interfacing of a 2K EPROM having an starting address
00FFH with 8085 microprocessor.
22.Show all the necessary connections to interface eight LEDs using an
output port with address 45H with 8085 microprocessor. Use
demultiplexed address/data lines and 3to-8 decoder (74LS138).
23.Interface 8K EPROM and 4K RAM with 8085 processor. Write address
range for both the memory chips and also show the address
decoding logic.
24.Draw the diagram for interfacing 8KB of ROM and 8KB of RAM with
microprocessor 8085 and also explain the number of pins used for
such interfacing. The starting address for ROM should be 0000H and
starting address for RAM should be 8000H.

CHAPTER NO - 4: Assembly Language Programming Basics,


Classification of Instructions, Addressing Modes, 8085 Instruction Set,
Instruction and Data Formats, Writing, Assembling & Executing A
Program, Debugging the Programs

1. Write an 8085-assembly language program to arrange the following


numbers in ascending order: 29H, 47H, 06H, 03H, 17H.
2. Write an 8085-assembly language program to arrange the following
numbers in descending order: 29H, 47H, 06H, 03H, 17H.
3. Write assembly language program to do multiplication of two
numbers. Specify the memory location of each and every instruction
and also draw flow chart.

YouTube, Instagram, telegram, twitter, Facebook: Priyeshsir Vidhyapeeth


4. Write assembly language program to do addition of two 8-bit
numbers with carry. Specify the memory location of each and every
instruction.
5. Register D contains 72H.Illustrate the instructions MOV and STAX to
copy the contents of register B into memory location 8020H using
indirect addressing.
6. What will be the value in accumulator, for the given 8085 programs
below?
MVI C,7FH
MVI B, 3EH
MOV A, B
RLC
RLC
ANI 7FH
HLT
7. Explain various addressing modes of 8085 microprocessor.
8. Explain working of rotate instruction of 8085 with proper example in
each case.
9. What will be the value in accumulator, for the given 8085 program
below? MVI A, 07H RLC MOV B,A RLC RLC RLC ORA B HLT
10.Explain following instruction (i) ANA/ANI ( ii) ORA/ORI ( iii) XRA/XRI (
iv) STC (v) CMA (vi) CMP/CPI (vii) CMC
11.Explain working of rotate instruction of 8085 with proper example in
each case.
12.Explain the following instructions of the 8085 microprocessor with
suitable example: (1) DAD Rp (2) XCHG (3) SPHL (4) STC.
13.Explain EI, DI, SIM and RIM instructions.
14.Explain different addressing modes of 8085 with an example of each.

YouTube, Instagram, telegram, twitter, Facebook: Priyeshsir Vidhyapeeth


CHAPTER NO - 5: Writing 8085 assembly language programs with
decision, making and looping using data transfer, arithmetic, logical
and branch instructions

1. Write an 8085-assembly language program to convert a two-digit


BCD number into its equivalent hexadecimal number.
2. Write assembly language program to count number of 1’s in given 8-
bit number. Specify the memory location of each and every
instruction.
3. Write a program in 8085 to arrange the five numbers in ascending
order. Assume numbers are available from 9000h to 9004h.
4. Write an 8085-assembly language program to add the numbers
stored in two arrays of 10 bytes stored on memory location at 2100H
and 2200H onwards. Store answer of addition of each numbers of
both array on memory locations 2300H onwards.
5. An array of twenty data bytes is stored on memory locations 2000H
onwards. Write an 8085 assembly language program to count the
number of zeros, odd numbers and even numbers and store them on
memory locations 3000H, 3001H and 3002H, respectively.

CHAPTER NO - 6: stack & Subroutines, Developing Counters and Time


Delay Routines, Code Conversion, BCD Arithmetic and 16-Bit Data
operation

1. Explain subroutine with suitable example.


2. What is stack? Explain stack operation in 8085 using PUSH and POP
instruction with net sketches. When stack operation are needed?
3. Explain CALL and RET instruction with examples.
4. Ten 8-bit values are stored from memory location 5000H onwards.
Write an 8085-assembly language program to add POSITIVE values
on addresses starts from 5100H and NEGATIVE values on addresses
starts from 5200H.

YouTube, Instagram, telegram, twitter, Facebook: Priyeshsir Vidhyapeeth


5. Write a set of 8085 assembly language instructions to generate a 0.5
second delay, if the crystal frequency is 4 MHz.
6. Ten 8-bit values are stored from memory location 3000H onwards.
Write an 8085-assembly language program to find the largest value
and stored it on the location 4000H.
7. Consider the following 8085 assembly language instructions: LXI D,
1234H NEXT: DCX D MOV A, E ORA D JNZ NEXT What amount of
delay is generated if the crystal frequency is 4 MHz?
8. Interface common anode 7 segment LED using an output port with
address 39H with 8085 microprocessor. Assume demultiplexed
address/data line.
9. Design an up-down counter to count from 0 to 7 and 7 to 0
continuously with a 1-second delay between each count and display
the count at one of the output ports. Show the delay calculation
assuming T-state duration of 1 micro-second.

CHAPTER NO –7 Interfacing Concepts, Ports, Interfacing Of I/O


Devices, Interrupts In 8085, Programmable Interrupt Controller 8259A,
Programmable Peripheral Interface 8255A

1. What is interrupt? List hardware interrupts of 8085.


2. Draw and explain the block diagram of the programmable peripheral
interface 8255A.
3. Draw and explain the block diagram of the programmable interrupt
controller 8259A.
4. What is the need of the programmable interrupt controller (8259A)?
Draw and explain the block diagram of 8259A.
5. What is the need of the programmable peripheral interface (8255A)?
Explain different modes of operation of 8255A.
6. List different hardware and software interrupts of 8085
microprocessor.

YouTube, Instagram, telegram, twitter, Facebook: Priyeshsir Vidhyapeeth


7. State the difference between the vectored and non-vectored
interrupts. Explain vectored interrupts of the 8085 microprocessor.
8. Explain the SIM and RIM instructions of the 8085 microprocessor.

CHAPTER NO – 8Advanced Microprocessors: 8086 logical block


diagram, segmentation, Pin functions, Minimum and maximum mode,
80286/80386: Overview and architecture, Programming model, Data
types and instruction set, segments and its types, segment descriptor,
descriptor table and selectors

1. Differentiate 8085 microprocessor with 8086 microprocessor.


2. Explain format of the descriptor in 80386 with diagram.
3. Differentiate between the real mode and protected mode of the
80286 microprocessor
4. How the physical addresses are calculated from segment register in
8086 microprocessor?
5. Explain the following pins of the 8086 microprocessor: TEST, LOCK ,
MN/MX
6. Draw block diagram of 80286 microprocessor.
7. List and explain the segment registers of 8086 microprocessor.
8. Draw block diagram of 80386 microprocessor.
9. Draw and explain internal architecture diagram of 8086
microprocessor.
10.Describe the importance of bus interface unit (BIU) and execution
unit (EU) of the 8086 microprocessor.
11.Differentiate between the real mode and protected mode of the
80286 microprocessor.
12.Describe the important flag bits of status register of 8086.
13.What is the use of descriptor table in 80286 microprocessor? What is
the purpose of the GDTR?
14.Explain the paging mechanism in an 80386 microprocessor

YouTube, Instagram, telegram, twitter, Facebook: Priyeshsir Vidhyapeeth

You might also like