summaryrefslogtreecommitdiff
path: root/src/common/page_table.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/page_table.h')
-rw-r--r--src/common/page_table.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/page_table.h b/src/common/page_table.h
index fcbd12a43..1ad3a9f8b 100644
--- a/src/common/page_table.h
+++ b/src/common/page_table.h
@@ -15,6 +15,9 @@ enum class PageType : u8 {
15 Unmapped, 15 Unmapped,
16 /// Page is mapped to regular memory. This is the only type you can get pointers to. 16 /// Page is mapped to regular memory. This is the only type you can get pointers to.
17 Memory, 17 Memory,
18 /// Page is mapped to regular memory, but inaccessible from CPU fastmem and must use
19 /// the callbacks.
20 DebugMemory,
18 /// Page is mapped to regular memory, but also needs to check for rasterizer cache flushing and 21 /// Page is mapped to regular memory, but also needs to check for rasterizer cache flushing and
19 /// invalidation 22 /// invalidation
20 RasterizerCachedMemory, 23 RasterizerCachedMemory,