T 1/8 0.125ms, 4+2+2+4 12 12 0.125 1.5ms
T 1/8 0.125ms, 4+2+2+4 12 12 0.125 1.5ms
1) If an 8086-based microcomputer is running at 8MHz with two wait states, how long does it take to
perform the interrupt-acknowledge bus cycle sequence?
Cs =0FF00H
and IP = 0400H
3) At what address would the vector for the instruction INT 60H be stored in memory?
4) What is the address from where the first instruction is fetched by the microprocessor after reset has
been applied?
5) Write a reset subroutine that initializes the block of memory locations from address 0F000H to
0F0AAH to 00H. The initialization routine is at address 01000H.
MOV DS,AX
NXT: MOV[DI], 0
INC DI
DEC CX
JNZ NXT
RET
Q6)