Files
Upsilon/gdb_script.gdb
Romain Goyet 299578c60b Big cleanup
2015-05-08 21:06:09 +02:00

14 lines
180 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 _halt
continue