diff options
author | Brian Cully <bjc@kublai.com> | 2022-11-06 14:31:17 -0500 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2022-11-06 14:31:17 -0500 |
commit | 06cf7bd3b829baf3e9c94026219ac28f541ece36 (patch) | |
tree | b1a3cc1e59356b9096799ba5c0cf8f5076f1bbf9 /.gdbinit | |
parent | e32104c49a330adcfe4bd1998d52803f18f47a28 (diff) | |
download | luchie-06cf7bd3b829baf3e9c94026219ac28f541ece36.tar.gz luchie-06cf7bd3b829baf3e9c94026219ac28f541ece36.zip |
gdb: rename init file so it can be autoloaded
Diffstat (limited to '.gdbinit')
-rw-r--r-- | .gdbinit | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.gdbinit b/.gdbinit new file mode 100644 index 0000000..881d4bc --- /dev/null +++ b/.gdbinit @@ -0,0 +1,14 @@ +define hook-quit + set confirm off +end + +set history save on +set confirm off +set print asm-demangle on + +set remote hardware-breakpoint-limit 4 +set remote hardware-watchpoint-limit 2 +target extended-remote psyduck:3334 + +monitor arm semihosting enable +mon reset init |