ns subcommand

The ns subcommand toggles symbolic name translation on and off.

Format

ns

Parameters

No parameters.

Other

No aliases.

Examples

The following is an example of how to use the ns subcommand:

KDB(0)> dc d000 5 //display code at address D000
   ___memcmp+000000     cmpw    cr1,r3,r4
   ___memcmp+000004    srwi.    r12,r5,2
   ___memcmp+000008   clrlwi    r11,r5,1E
   ___memcmp+00000C       li    r7,0
   ___memcmp+000010     beq-    cr1.eq,<__memcmp+000050>
   KDB(0)> ns //disable symbol printing
   Symbolic name translation off
   KDB(0)> dc d000 5 //display code at address D000
   0000D000     cmpw    cr1,r3,r4
   0000D004    srwi.    r12,r5,2
   0000D008   clrlwi    r11,r5,1E
   0000D00C       li    r7,0
   0000D010     beq-    cr1.eq,<0000D050>
   KDB(0)> ns //enable symbol printing
   Symbolic name translation on
   KDB(0)>