From 633f6e37d111c796cd69df309aae96cfb3548878 Mon Sep 17 00:00:00 2001 From: tracer-ics2023 Date: Sun, 1 Sep 2024 14:21:37 +0800 Subject: [PATCH] =?UTF-8?q?>=20=20compile=20NEMU=20221220000=20=E5=BC=A0?= =?UTF-8?q?=E4=B8=89=20Linux=20zzy=205.15.146.1-microsoft-standard-WSL2=20?= =?UTF-8?q?#1=20SMP=20Thu=20Jan=2011=2004:09:03=20UTC=202024=20x86=5F64=20?= =?UTF-8?q?x86=5F64=20x86=5F64=20GNU/Linux=20=2014:21:36=20up=201=20day,?= =?UTF-8?q?=2013:11,=20=201=20user,=20=20load=20average:=200.95,=200.44,?= =?UTF-8?q?=200.28?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nemu/src/monitor/sdb/sdb.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nemu/src/monitor/sdb/sdb.c b/nemu/src/monitor/sdb/sdb.c index 726b1e8..2ec69a2 100644 --- a/nemu/src/monitor/sdb/sdb.c +++ b/nemu/src/monitor/sdb/sdb.c @@ -69,6 +69,7 @@ static int cmd_si(char *args) { return 0; } +void show_wp(void); static int cmd_info(char *args) { char *arg = strtok(NULL, " "); if (arg == NULL) { @@ -79,7 +80,7 @@ static int cmd_info(char *args) { if (arg[0] == 'r') { isa_reg_display(); } else if (arg[0] == 'w') { - printf("Watchpoint:\n"); + show_wp(); } else { p_help("info"); }