diff --git a/Makefile.toml b/Makefile.toml index 5bff275..28d0228 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -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" ''' ] diff --git a/nucleus/Makefile.toml b/nucleus/Makefile.toml index 80dd79e..6ce231e 100644 --- a/nucleus/Makefile.toml +++ b/nucleus/Makefile.toml @@ -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" ''' ]