
132
CHAPTER 6 INTERRUPTS
6.4.2
Processing for Interrupt Operation
When a peripheral function (resource) outputs an interrupt request and the CPU
accepts it, the interrupt processing is performed after the instruction currently being
executed is terminated. If the EI2OS enable bit (ISE) of the interrupt control register
(ICR) is set to "0", the CPU performs the interrupt processing. If the ISE is set to "1",
the CPU activates the extended intelligent I/O service (EI2OS). If a software interrupt is
output by the INT instruction, the instruction currently being executed is suspended,
the interrupt processing routine is performed, and hardware interrupts are disabled.
s Processing for Interrupt Operation
Figure 6.4-3 Flow of Interrupt Processing
START
Main program
YES
Interrupt activation/return processing
YES
NO
EI2OS
Software inter-
rupt/exception
processing
Hardware
instruction
EI2OS processing
Return
processing
During exception
processing,
RETI instruction
cannot restore
the previous
processing.
I&IF&IF="1"
AND
ILM>IL
INT
instruction?
ISE = "1"
RETI
instruction?
Specified
count terminated? Alter-
natively, is there a termination
request from the peripheral
function?
Fetch the next instruction
and deode
Execute ordinary instruction
(including interrupt processing)
Repetition
of string type (*1) instruction
completed?
Move the pointer to the next
instruction by PC update
Return the dedicated
registers from the system
stack, call the interrupt
routine, and return to the
previous routine
I="0" (Disable hardware
interrupts)
PCB, PC <- interrupt
vector (Branch to the
interrupt processing routine)
S="1" (Activates the
system stack)
ILM <- IL (Transfer the
interrupt level of the accepted
interrupt request to the ILM)
Save the dedicated
registers to the system stack
Save the dedicated registers
to the system stack
String type (*1)
instruction in
progress
*1 When a string type instruction is being executed, the interrupt is evaluated in each step.
I:
Interrupt enable flag of the condition code register (CCR)
IF:
Interrupt request flag of the peripheral function
IE:
Interrupt enable flag of the peripheral function
ILM:
Interrupt level mask register (in the PS)
ISE:
EIOS enbale flag of the interruptor control register (ICR)
IL:
Interrupt level setting bit of the interrupt control register (ICR)
S:
Stack flag of the condition code register (CCR)
PCB:
Program bank register
PC:
Program counter:
NO