
This target starts qemu in Debug-Mode and GDB. There is a GDB-Script file script.gdb which is extensible to match your debugging needs.
7 lines
162 B
Text
7 lines
162 B
Text
# Constant part of the script
|
|
symbol-file metalsvm.sym
|
|
target remote localhost:1234
|
|
|
|
# Configure breakpoints and everything as you wish here.
|
|
break main
|
|
continue
|