fix: 🐛 Set GDB breakpoints by physical address

This commit is contained in:
Berkus Decker 2022-05-19 22:22:31 +03:00
parent 31d0ed9c57
commit b52c63796c
2 changed files with 2 additions and 2 deletions

View File

@ -162,7 +162,7 @@ script_runner = "@duckscript"
script = [
'''
writefile ${GDB_CONNECT_FILE} "target extended-remote :5555\n"
appendfile ${GDB_CONNECT_FILE} "break 0x80000\n"
appendfile ${GDB_CONNECT_FILE} "break *0x80000\n"
'''
]

View File

@ -36,7 +36,7 @@ script_runner = "@duckscript"
script = [
'''
writefile ${GDB_CONNECT_FILE} "target extended-remote :5555\n"
appendfile ${GDB_CONNECT_FILE} "break 0x80000\n"
appendfile ${GDB_CONNECT_FILE} "break *0x80000\n"
appendfile ${GDB_CONNECT_FILE} "continue\n"
'''
]