AT OFFSET command (disassembly)

Gives z/OS® Debugger control at the specified offset in the disassembly view.

Read syntax diagramSkip visual syntax diagramATOFFSET offset_spec(,offset_spec) command;
command
A valid z/OS Debugger command.

Usage note

The AT OFFSET command cannot be used while you replay recorded statements by using the PLAYBACK commands.

Examples

  • Set a breakpoint at offset '2A' in the current block:
    AT OFFSET X'2A';
  • Set a breakpoint at offsets '2A' and '30' in the current block:
    AT OFFSET (X'2A',X'30');
  • Set a breakpoint in the block MYPROG at offset '3A':
    AT OFFSET MYPROG:>X'3A';

Refer to the following topics for more information related to the material discussed in this topic.