From: Toni Wilen Date: Sun, 27 Sep 2015 12:40:30 +0000 (+0300) Subject: None memwatch flag. X-Git-Tag: 3200~47 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=02b585efc4c1b0c1cc50177cc65343e991abd17f;p=francis%2Fwinuae.git None memwatch flag. --- 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