GNU Debugger
===
- lay next: start a layout panel
- break main: add a breakpoint on the main symbol
- run args: start execution
- r: abbreviation
- next: step over (lang area)
- n: abbreviation after first execution
- nexti: next instruction (assembly area)
- step: step into (go inside symbol definition)
- ref: refresh
- x/i $pc: examine instruction on program counter '?'
- info registers: get info about the registers
- catch throw: stop on error
- disassemble /sr : disassemble a function
- info target: some elf infos
- maint info sections: infos about sections
- info variables: info about declared variables
- info functions: info about declared functions