diff options
author | Nao Pross <naopross@thearcway.org> | 2018-11-27 20:38:50 +0100 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2018-11-27 20:38:50 +0100 |
commit | ee5ac9acdc1e0f766dd7275e58f1c330caf06b85 (patch) | |
tree | b118de3f9b409f060c8dc61a61eeafb7f006e22a /.gdbinit | |
parent | Add ret statements (diff) | |
download | base32asm-ee5ac9acdc1e0f766dd7275e58f1c330caf06b85.tar.gz base32asm-ee5ac9acdc1e0f766dd7275e58f1c330caf06b85.zip |
Add gdb configuration and debug symbols
Diffstat (limited to '.gdbinit')
-rw-r--r-- | .gdbinit | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.gdbinit b/.gdbinit new file mode 100644 index 0000000..ee986fb --- /dev/null +++ b/.gdbinit @@ -0,0 +1,9 @@ +set disassembly-flavor intel + +file b32e +b _start + +run < <(echo -n "hello") + +layout asm +layout reg |