blob: 53ba8fb71f8b329ef87931971b5341b86e5b442c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef MEMORYTYPES_H
#define MEMORYTYPES_H
// memory types to mark the pages as of specific types
// the specification allows custom types that are bigger than 0x80000000
#define MEM_KERNEL 0x80000010
#define MEM_RAMDISK 0x80000020
#define MEM_ARGS 0x80000030
#define MEM_PAGING 0x80000040
#endif // MEMORYTYPES_H
|