debugger.PseudoTimer.Information
|
This function displays the pseudo-timer information. [RL78 instruction simulator]
[Specification format]
debugger.PseudoTimer.Information()
|
[Argument(s)]
None
[Return value]
List of pseudo-timer information (See the PseudoTimerInfo class for details.)
[Detailed description]
- | The specified pseudo-timer information is shown in the format below. |
pseudo-timer-number vector-address Priority: interrupt-priority Interval Time: interval-time{Min|S|Ms|Us|Clock} {Periodic|Once}
|
[Example of use]
>>>pi = debugger.PseudoTimer.Information()
1 0x40 Priority: 3 Interval Time: 1Ms Periodic
3 0x7c Priority: 0 Interval Time: 10Clock Once
>>>print pi[0].Number
1
>>> print pi[1].Number
3
>>> print pi[0].Periodic
True
|