Everything

debugger.Interrupt.OccurEI


This function generates EI-level interrupts.[RH850 Simulator] [RH850G3M, RH850G3K, RH850G3MH, RH850G3KH, RH850G4MH (versions earlier than 2.0)]

 

[Specification format]

debugger.Interrupt.OccurEI(channel, priority, eiVectorType = EIVectorType.Standard)

[Argument(s)]

Argument

Description

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.

Type

Description

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
>>>