From 02b585efc4c1b0c1cc50177cc65343e991abd17f Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Sun, 27 Sep 2015 15:40:30 +0300 Subject: [PATCH] None memwatch flag. --- debug.cpp | 1 + include/debug.h | 1 + 2 files changed, 2 insertions(+) diff --git a/debug.cpp b/debug.cpp index dc73b731..9ff761fe 100644 --- a/debug.cpp +++ b/debug.cpp @@ -2632,6 +2632,7 @@ struct mw_acc static const struct mw_acc memwatch_access_masks[] = { { MW_MASK_ALL, _T("ALL") }, + { MW_MASK_NONE, _T("NONE") }, { MW_MASK_ALL & ~MW_MASK_CPU, _T("DMA") }, { MW_MASK_BLITTER_A | MW_MASK_BLITTER_B | MW_MASK_BLITTER_C | MW_MASK_BLITTER_D, _T("BLT") }, { MW_MASK_AUDIO_0 | MW_MASK_AUDIO_1 | MW_MASK_AUDIO_2 | MW_MASK_AUDIO_3, _T("AUD") }, diff --git a/include/debug.h b/include/debug.h index 6fdb02f7..5bee4258 100644 --- a/include/debug.h +++ b/include/debug.h @@ -91,6 +91,7 @@ extern struct breakpoint_node bpnodes[BREAKPOINT_TOTAL]; #define MW_MASK_SPR_5 0x01000000 #define MW_MASK_SPR_6 0x02000000 #define MW_MASK_SPR_7 0x04000000 +#define MW_MASK_NONE 0x08000000 #define MW_MASK_ALL (0x08000000 - 1) #define MEMWATCH_TOTAL 20 -- 2.47.3