From b52c63796c607991f8051d3e3d2cd0b9e9c6ff0a Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Thu, 19 May 2022 22:22:31 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Set=20GDB=20breakpoints?= =?UTF-8?q?=20by=20physical=20address?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile.toml | 2 +- nucleus/Makefile.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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" ''' ]