debugger.SoftwareTrace.Information
|
This function displays software trace information. [RH850]
[Specification format]
debugger.SoftwareTrace.Information()
|
[Argument(s)]
None
[Return value]
List of software trace information (see the SoftwareTraceEventInfo class for detail)
[Detailed description]
- | This function displays software trace information displays in the following format. |
[state] DBCP=[DBCP-information] DBTAG=[DBTAG-information] DBPUSH=[DBPUSH-information] PC=[PC-information]
|
[Example of use]
>>>si = debugger.SoftwareTrace.Information()
Enable DBCP=False DBTAG=True DBPUSH=False PC=False
>>>print si.DBCP
False
>>>print si.DBTAG
True
>>>print si.PC
False
>>>
|