debugger.Interrupt.RequestEI
|
This function sends an EI-level interrupt request to the interrupt controller. [RH850 Simulator (G4MH)]
[Specification format]
debugger.Interrupt.RequestEI(channel)
|
[Argument(s)]
|
|
channel
|
Specify an interrupt name (string) or vector address (numeric value).
|
[Return value]
If the interrupt request was successful : True
If the interrupt request failed : False
[Detailed description]
- | This function sends an EI-level interrupt request to the interrupt controller. |
- | Generation of the interrupt depends on the settings and state of the interrupt controller. |
[Example of use]
>>>debugger.Interrupt.RequestEI(1)
True
>>>
|