Files
2019-03-17 09:45:21 +00:00

10 lines
264 B
Plaintext

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