]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
None memwatch flag.
authorToni Wilen <twilen@winuae.net>
Sun, 27 Sep 2015 12:40:30 +0000 (15:40 +0300)
committerToni Wilen <twilen@winuae.net>
Sun, 27 Sep 2015 12:40:30 +0000 (15:40 +0300)
debug.cpp
include/debug.h

index dc73b731b9d340a9b0026a38be0de4c71f9be807..9ff761fed2d81793e44f6336b0960447b47d5de6 100644 (file)
--- 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") },
index 6fdb02f729942f3438617977177c3fc8a8376ca3..5bee425850e87f21f9149c97700ca86e4a009615 100644 (file)
@@ -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