mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-18 21:30:38 +01:00
13 lines
168 B
Plaintext
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
|