debugger.Interrupt.OccurFE


This function generates FE-level interrupts. [RH850 Simulator]

[Specification format]

debugger.Interrupt.OccurFE(feVectorType)

[Argument(s)]

Argument

Description

feVectorType

Specify the type of an interrupt.

The types that can be specified are shown below.

Type

Description

FEVectorType.FENMI

NMI interrupt

FEVectorType.FEINT

INT interrupt [RH850G3M, RH850G3K, RH850G3MH, RH850G3KH]

FEVectorType.FEINT0

INT interrupt 0 [RH850G4MH]

FEVectorType.FEINT1

INT interrupt 1 [RH850G4MH]

FEVectorType.FEINT2

INT interrupt 2 [RH850G4MH]

FEVectorType.FEINT3

INT interrupt 3 [RH850G4MH]

FEVectorType.FEINT4

INT interrupt 4 [RH850G4MH]

FEVectorType.FEINT5

INT interrupt 5 [RH850G4MH]

FEVectorType.FEINT6

INT interrupt 6 [RH850G4MH]

FEVectorType.FEINT7

INT interrupt 7 [RH850G4MH]

FEVectorType.FEINT8

INT interrupt 8 [RH850G4MH]

FEVectorType.FEINT9

INT interrupt 9 [RH850G4MH]

FEVectorType.FEINT10

INT interrupt 10 [RH850G4MH]

FEVectorType.FEINT11

INT interrupt 11 [RH850G4MH]

FEVectorType.FEINT12

INT interrupt 12 [RH850G4MH]

FEVectorType.FEINT13

INT interrupt 13 [RH850G4MH]

FEVectorType.FEINT14

INT interrupt 14 [RH850G4MH]

FEVectorType.FEINT15

INT interrupt 15 [RH850G4MH]

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