Module 3

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

What are the difference between memory mapped I/O and I/O mapped I/O.

Interface two 4k X 8 EPROMS and two 4k X 8 RAM chips with 8086.


Write the control word format for BSR mode.
Write a program to read the DIP switches and display the reading from port B at port A and from port CL
at port CU
MOV AL,83H
MOV [8003H], AL
MOV AL, [8001H]
MOV [8000H], AL
MOV AL, [8002H]
AND AL,0FH
ROL AL,4
MOV [8002H], AL
HLT
Write a BSR control word subroutine to set bits PC7 and PC3 and reset them after 10 ms. Assume that a
delay subroutine is available..
MOV AL,0FH
OUT 83H
MOV AL, 07H
OUT 83H
CALL DELAY
MOV AL, 06H
OUT 83H
MOV AL, 0EH
OUT 83H
RET
Write the control word format for 8253.
What do you mean by read back command in 8253
Write instructions to generate a 1kHz square wave from Counter 1
MOV AL,76H
OUT 83H
MOV AL D0H
OUT 81H
MOV AL,07H
OUT 81H
HLT
Explain all the Initialization Command words for 8259
Describe interrupt sequence in an 8086-8259 system
How many priority modes are available in 8259.
How DMA operation is performed with 8086.
Differentiate between two key lockout mode and N key roll over mode
Draw and discuss internal architecture of USART
What is memory mapped I/O and I/O mapped I/O?
Write the control word format for I/O mode in 8255.
What are the modes of Data Communication in USART?
Describe Mode 3 in 8253 with timings diagram.
What is meant by Direct Memory Access?

You might also like