Files
Upsilon/quiz/gdb_script.gdb
2015-09-03 22:44:25 +02:00

15 lines
215 B
Plaintext

# Let's connect to OpenOCD
target remote localhost:3333
# Load our executable
load test.elf
# Tell OpenOCD to reset and halt
monitor reset halt
# Add a breakpoint
break debugger
# Launch the test suite
continue