From: Simon Ruderich Date: Tue, 7 May 2013 19:32:18 +0000 (+0200) Subject: gdb/gdbinit: Use 16 as default output base. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=0093c8ca2b5180951a25206d3d917bb8463069b9 gdb/gdbinit: Use 16 as default output base. --- diff --git a/gdb/gdbinit b/gdb/gdbinit index 5ce2868..59b79c0 100644 --- a/gdb/gdbinit +++ b/gdb/gdbinit @@ -27,6 +27,9 @@ set history size 10000 set extended-prompt (\[\e[01;32m\]gdb\e[00m\]) +# Default output base is 16 (hex). +set output-radix 16 + # Always disassemble next command/instruction. Very useful when debugging code # without debug information. set disassemble-next-line on