mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-20 09:17:23 +01:00
13 lines
169 B
Plaintext
13 lines
169 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
|