Files
microrust/getting-started/.gdbinit
2019-03-17 09:45:21 +00:00

10 lines
263 B
Plaintext

# Connects GDB to OpenOCD server port
target remote :3333
# (optional) Unmangle function names when debugging
set print asm-demangle on
# Load your program, breaks at entry
load
# (optional) Add breakpoint at function
break main
# Continue with execution
continue