Files
Upsilon/gdb_script.gdb
2015-05-04 19:03:53 +02:00

13 lines
168 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 main
continue