debugger.Jump.File
debugger.Jump.Address
|
This function displays each panel.
[Specification format]
debugger.Jump.File(fileName, lineNumber = 1)
debugger.Jump.Address(jumpType, adddress = 0)
|
[Argument(s)]
|
|
fileName
|
Specify the name of the file to display.
|
lineNumber
|
Specify the line to display (default: 1).
|
jumpType
|
Specify the type of panel to display.
The panel types that can be specified are shown below.
|
|
|
JumpType.Source
|
Editor panel
|
JumpType.Assemble
|
Disassemble panel
|
JumpType.Memory
|
Memory panel
|
address
|
Specify the address to display (default: 0).
|
[Return value]
None
[Detailed description]
- | debugger.Jump.File displays the file specified by fileName in the Editor panel.
If lineNumber is specified, then the line specified by lineNumber in the file specified by fileName is displayed. |
- | debugger.Jump.Address displays the panel specified by jumpType.
If address is specified, then the area corresponding to the specified address is displayed. |
[Example of use]
>>>debugger.Jump.File("C:/test/testJump.c")
>>>debugger.Jump.File("C:/test/testJump.h", 25)
>>>debugger.Jump.Address(JumpType.Memory, 0x2000)
>>>
|