Files
Upsilon/gdb_script.gdb
Romain Goyet 3d086d097c Cleanup
2015-05-18 18:39:04 +02:00

15 lines
195 B
Plaintext

# Let's connect to OpenOCD
target remote localhost:3333
# Load our executable
load boot.elf
# Tell OpenOCD to reset and halt
monitor reset halt
break init
break abort
break __assert
continue