debugger.PseudoTimer.Delete
|
This function deletes pseudo-timers. [RL78 instruction simulator]
[Specification format]
debugger.PseudoTimer.Delete(pseudoTimerNumber = 0)
|
[Argument(s)]
|
|
pseudoTimerNumber
|
Specify the pseudo-timer number to be deleted (numerical value: 1 to 64).
Delete all pseudo-timers (numerical value: 0).
|
[Return value]
If pseudo-timers were deleted successfully :True
If there was an error when deleting pseudo-timers:False
[Detailed description]
- | This function stops and deletes pseudo-timers specified with pseudoTimerNumber. |
- | If pseudoTimerNumber is not specified or is specified as 0, pseudo-timers with all pseudo-timer numbers will be stopped and deleted. |
[Example of use]
>>>debugger.PseudoTimer.Delete(1)
True
>>>debugger.PseudoTimer.Delete()
True
|