/* * Copyright (C) 2023-2024 Intel Corporation. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause * * Authors: * Haicheng Li */ #ifndef __RISCV_PAGE_H__ #define __RISCV_PAGE_H__ #define PAGE_SHIFT 12 #define PAGE_SIZE (1 << PAGE_SHIFT) #endif /* __RISCV_PAGE_H__ */