Jump to content

KernelDebugRef - Numbers

From EDM2

Reprint Courtesy of International Business Machines Corporation, © International Business Machines Corporation

Kernel Debugger Reference
  1. Introduction
  2. Installing the Kernel Debugger
  3. The T Terminal Emulator
  4. Entering the Debugger
  5. Expressions
  6. Operator Precedence
  7. Binary Operators
  8. Unary Operators
  9. Numbers
  10. Strings
  11. Symbol Files
  12. Using Kernel Debugger Commands
  13. The Breakpoint (BP) Command
  14. Breakpoint Commands
  15. External Commands
  16. Using Default Commands
  17. External Debugger Commands
  18. Setting Useful Breakpoints
  19. Debugging Kernel Device Drivers
  20. Debugging VM Start Sessions
  21. Debugging a Remote System
  22. Notices

The default base for numbers in the Kernel Debugger is 16 (hexadecimal). You can add a one-letter suffix to the digits of a number to indicate the base of the number, as shown in the following table. The term nnnnnn represents a number that consists of a variable number of digits.

Number Base Valid digits
nnnnnnY Binary 0 1
nnnnnnO Octal 0 1 2 3 4 5 6 7
nnnnnnQ Octal 0 1 2 3 4 5 6 7
nnnnnnT Decimal 0 1 2 3 4 5 6 7 8 9
nnnnnnH Hexadecimal 0 1 2 3 4 5 6 7 8 9 A B C D E F