1;------------------------------------------------------------------------------
3; Definitions of Page Table Entry
for the reset vector module
5; Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
6; SPDX-License-Identifier: BSD-2-Clause-Patent
8;------------------------------------------------------------------------------
10%define PAGE_PRESENT 0x01
11%define PAGE_READ_WRITE 0x02
12%define PAGE_USER_SUPERVISOR 0x04
13%define PAGE_WRITE_THROUGH 0x08
14%define PAGE_CACHE_DISABLE 0x010
15%define PAGE_ACCESSED 0x020
16%define PAGE_DIRTY 0x040
17%define PAGE_SIZE 0x080
18%define PAGE_GLOBAL 0x0100
19%define PAGE_2M_PAT 0x01000