mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
18 lines
235 B
Plaintext
18 lines
235 B
Plaintext
# Let's connect to OpenOCD
|
|
target remote localhost:3333
|
|
|
|
# GDB pagniation is annoying
|
|
set pagination off
|
|
|
|
# Load our executable
|
|
load
|
|
|
|
# Tell OpenOCD to reset and halt
|
|
monitor reset halt
|
|
|
|
break init
|
|
break abort
|
|
break __assert
|
|
|
|
continue
|