From be3bfc48a8be7cd4d84709e98c5def13259d49f6 Mon Sep 17 00:00:00 2001 From: Uwe Bonnes Date: Fri, 2 Apr 2021 19:20:21 +0200 Subject: [PATCH] cortexm: M33 has up to 8 hardware breakpoints --- src/target/cortexm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/target/cortexm.c b/src/target/cortexm.c index 9a36e0f..5c76eea 100644 --- a/src/target/cortexm.c +++ b/src/target/cortexm.c @@ -86,7 +86,7 @@ static int cortexm_breakwatch_clear(target *t, struct breakwatch *); static target_addr cortexm_check_watch(target *t); #define CORTEXM_MAX_WATCHPOINTS 4 /* architecture says up to 15, no implementation has > 4 */ -#define CORTEXM_MAX_BREAKPOINTS 6 /* architecture says up to 127, no implementation has > 6 */ +#define CORTEXM_MAX_BREAKPOINTS 8 /* architecture says up to 127, no implementation has > 8 */ static int cortexm_hostio_request(target *t);