Implement PCD (page cache disable) paging bit
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 3m30s
Build documentation / build-and-deploy (push) Successful in 2m35s

This commit is contained in:
2026-03-23 22:56:02 +01:00
parent b35fc5545c
commit db26b126de
3 changed files with 4 additions and 0 deletions

View File

@@ -4,6 +4,7 @@
#define MAP_PRESENT (1 << 0)
#define MAP_RW (1 << 1)
#define MAP_USER (1 << 2)
#define MAP_NOCACHE (1 << 3)
#define MAP_FLAGS (MAP_PRESENT | MAP_USER)
#endif // _MAP_H