You can specify a number in hexadecimal, decimal, or octal format by using the following syntax.
Syntax
<number>
──┬─<hexadecimal number>────┬──────────────────────────────────────────┤ ├─ DEC ──<decimal number>─┤ └─ OCT ──<octal number>───┘
Explanation
The following text describes the meaning of each variable:
<hexadecimal number>
Indicates a number in base 16, each of whose digits ranges from 0 to F.
Note: | DUMPANALYZER assumes a number is hexadecimal unless you precede it with the prefix DEC (decimal) or OCT (octal), indicating another base. |
<decimal number>
Specifies a number in base 10, each of whose digits ranges from 0 to 9. In DUMPANALYZER commands, a number is decimal when you precede it with the prefix DEC.
<octal number>
Specifies a number in base 8, each of whose digits ranges from 0 to 7. In DUMPANALYZER commands, a number is octal when you precede it with OCT.