Specifications
Saturn The Windows ‘95 Debugger 16-73
Psy-Q Development System
Moving To A Known Address Or Label
4 The Goto command is available on the Source, Disassembly and Memory Pane
menus. It is used to put the caret and PC at a known address, label name, register
name or value of a specified C expression as described below:
1.
Make the Source, Disassembly or Memory Pane Active.
2.
Click the right hand mouse button to call the Pane menu.
3.
Select the Goto option from the menu.
4.
A dialogue box appears in which you enter the memory address, symbol name,
register name or C expression.
5.
Click to place the cursor at the entry point.
Go To Expression Dialogue Box
6.
Type the required expression directly in this box or click the down arrow to
display expressions which have been entered previously.
7.
Enter or select the required expression and click . Note that a
hexadecimal address must be prefixed with the string ‘0x’
As the Goto action will take you to the value of the specified expression, note the
consequences when you enter a name containing C debug information as well as an
Assembler label.
For example, if ‘_ramsize’ is specified you will be taken to the value of _ramsize, not
to where it is defined. This is because the C expression evaluator sees the C
definition of _ramsize first and then evaluates it. To Goto this address, you must
enter either ‘&_ramsize’ or ‘:_ramsize’.