in CO and Architecture edited by
681 views
2 votes
2 votes

CPU can leave current instruction execution, without completing it for :

  1. Service of interrupt
  2. DMA
  3. Both
  4. Neither
in CO and Architecture edited by
by
681 views

1 comment

The answer should be clearly DMA , because we know that in say cycle stealing mode DMA steals the bus from cpu just before its about use the bus for transfer.

Is it correct explanation.

Answer is correct though
1
1

3 Answers

1 vote
1 vote

the correct reason for the answer DMA :- is difference between DMA request and Interrupt request. in case of interrupt request c.p.u has to store current status of programme and complete the current instruction to be free to execute interrupt service routine but in case of DMA request c.p.u just have to halt for a time period in the situation it is in ..there is no need to save its current status and to be free so a DMA request can arrive at any machine cycle(i.e. fetch ,decode)

source:- NPTEL  sir raman lecture

0 votes
0 votes

Answer should be only DMA because processor can give bus mastership to DMA during the execution of an instruction.

can not be the option because processor only checks for interrupt after it completes its instruction execution.

Note - If during an instruction execution an exception occur then also processor can leave current instruction execution and run exception handler. But exceptions and interrupts are two different things.

0 votes
0 votes
Option B) DMA is the answer , because CPU can provide bus to DMA during the execution of an instruction.

Whereas, In case of Interrupt , CPU only checks for interrupt after current instruction is executed.

Related questions