debugger.Interrupt.OccurFE
|
This function generates FE-level interrupts. [RH850 Simulator]
[Specification format]
debugger.Interrupt.OccurFE(feVectorType)
|
[Argument(s)]
|
|
feVectorType
|
Specify the type of an interrupt.
The types that can be specified are shown below.
|
|
|
FEVectorType.FENMI
|
NMI interrupt
|
FEVectorType.FEINT
|
INT interrupt
|
FEVectorType.SyserrCause10
|
SyserrCause10 interrupt
|
FEVectorType.SyserrCause11
|
SyserrCause11 interrupt
|
FEVectorType.SyserrCause12
|
SyserrCause12 interrupt
|
FEVectorType.SyserrCause13
|
SyserrCause13 interrupt
|
FEVectorType.SyserrCause14
|
SyserrCause14 interrupt
|
FEVectorType.SyserrCause15
|
SyserrCause15 interrupt
|
FEVectorType.SyserrCause16
|
SyserrCause16 interrupt
|
FEVectorType.SyserrCause17
|
SyserrCause17 interrupt
|
FEVectorType.SyserrCause18
|
SyserrCause18 interrupt
|
FEVectorType.SyserrCause19
|
SyserrCause19 interrupt
|
FEVectorType.SyserrCause1a
|
SyserrCause1a interrupt
|
FEVectorType.SyserrCause1b
|
SyserrCause1b interrupt
|
FEVectorType.SyserrCause1c
|
SyserrCause1c interrupt
|
FEVectorType.SyserrCause1d
|
SyserrCause1d interrupt
|
FEVectorType.SyserrCause1e
|
SyserrCause1e interrupt
|
FEVectorType.SyserrCause1f
|
SyserrCause1f interrupt
|
[Return value]
If interrupts were generated successfully: True
If there was an error when generating interrupts: False
[Detailed description]
- | This function generates FE-level interrupts. |
- | Specify the interrupt name to be generated in feVectorType. |
[Example of use]
>>>debugger.Interrupt.OccurFE(FEVectorType.FENMI)
True
>>>
|