Files
mop3/include/map.h
kamkow1 db26b126de
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 3m30s
Build documentation / build-and-deploy (push) Successful in 2m35s
Implement PCD (page cache disable) paging bit
2026-03-23 22:56:02 +01:00

11 lines
210 B
C

#ifndef _MAP_H
#define _MAP_H
#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