This function sets exception cause codes whose notification is accepted. [RH850 Simulator]
Specify the mode for accepting notification of exception cause codes. |
||
Specify the list of exception cause codes whose notification is accepted (numerical value). |
If exception cause codes were set successfully: True
If there was an error when setting exception cause codes: False
To accept notification of only specific exception cause codes, specify NotificationMode.Deny in notificationMode and specify the exception cause codes whose notification is accepted in code. |
Define the processing to be performed after accepting a specified exception cause code in a hook function or callback function. See “Hook“ for detail. |
>>>expcode = [0x00000020, 0x00000030, 0x00000050] >>>debugger.Interrupt.Notification(NotificationMode.Deny, expcode) True >>> |