debugger.Interrupt.OccurEI
|
This function generates EI-level interrupts. [RH850 Simulator]
[Specification format]
debugger.Interrupt.OccurEI(channel, priority, eiVectorType = EIVectorType.Standard)
|
[Argument(s)]
|
|
channel
|
Specify an interrupt name (string) or vector address (numerical value).
|
priority
|
Specify the interrupt priority as a numerical value (0 to 15).
|
eiVectorType
|
Specify the interrupt vector mode.
The modes that can be specified are shown below.
|
|
|
EIVectorType.Standard
|
Standard mode (default)
|
EIVectorType.Expanded
|
Expanded mode
|
[Return value]
If interrupts were generated successfully: True
If there was an error when generating interrupts: False
[Detailed description]
- | This function generates EI-level interrupts. |
- | Specify the interrupt name to be generated in channel and the priority in priority.
Specify eiVectorType according to the interrupt vector mode in use. |
[Example of use]
>>>debugger.Interrupt.OccurEI(0x20, 1, EIVectorType.Standard)
True
>>>
|