debugger.DebugTool.SaveState
|
This function saves the state of the debug tool to a file. [RH850]
[Specification format]
debugger.DebugTool.SaveState(fileName)
|
[Argument(s)]
|
|
fileName
|
Specify the full path of the file to save the state of the debug tool.
|
[Return value]
If the file was saved successfully: True
If there was an error when saving the file: False
[Detailed description]
- | This function saves readable/writable memory and register values to a file as the state of the debug tool. |
[Example of use]
>>>debugger.DebugTool.SaveState("C:/test/debugtoolstate.log")
True
>>>
|