Categories of Data Description Parameters
- Address, LENGTH, and POSITIONS parameters describe the logical and physical location and the size of the data.
- Address processing parameters describe how the subcommand is to process the address. For example, the parameters indicate whether to simulate prefixing or dynamic address translation, and whether the dump source is in main storage or a data set.
- Attribute parameters describe the type of data and how it is to be displayed or printed.
- Array parameters describe the data as an array and define subscripts and dimensions or indicate that the data should not be treated as an array.
- Remark parameters associates remark text with data or indicates that there is no remark text.
- ADDR1
- is the symbolic address associated with the symbol ADDR1.
- X
- is the symbolic address associated with the current address in the dump.
- +73
- is the relative address X'73' bytes beyond the current address.
- 4C.
- is a literal address at location X'4C'.
- 7R
- is general-purpose register 7.
- 6D
- is floating point register 6 with double precision.
- 6C.%
- is a 24-bit indirect address, the location up to 224-1 pointed from location X‘6C’.
- CVT+230?
- is a 31-bit indirect address, the location up to 231-1 addressed by the CVT field at offset +230 (field CVTGDA).
- ADDR1-73n+4C
- is an address expression, ADDR1 minus 73 (decimal) plus X‘4C’.
equate abc a72f4. asid(1) length(80) area scalar +
remark('input params from EXEC statement')
The symbol is associated with an 80-byte area beginning at X'A72F4'. ASID indicates that this address is virtual and IPCS simulates dynamic address translation for ASID(1). The AREA, SCALAR, and REMARK parameters specify information about this area that you want for future reference. AREA indicates that it is neither a module nor a control block. SCALAR indicates it is a single block of storage, not an array. The REMARK is your description of the 80-byte area.
list abc
list a72f4. asid(1) length(x'50') area scalar
This subcommand displays the same data (except the remark), in the same format, as the previous example. Note that the length is defined in hexadecimal.
list abc+80n length(20) c
equate x abc+80n length(x'14')
list x c
This example sets X, the current address, to the end of the buffer and specifies a length of X‘14’. The LIST subcommand then displays this area in character format.
list 7FFFD018. length(4) entries(6:10)
This displays the five segment table entries beginning at X‘5A2418’ (each segment table entry is four bytes). The total length of the five entries is 20 bytes.
list 0r:15r terminal
This displays all 16 general-purpose registers at your terminal.
list 0d:6d
equate a 1000.+10
equate b a+20
This design is used for the concept of fields within control blocks. Each field is considered at an offset from the beginning of the control block, not at an offset from another field.