050221a0de
Signed-off-by: Chloe M <chloe@mensia.org>
17 lines
308 B
C
17 lines
308 B
C
/*
|
|
* Copyright (c) 2026, Chloe M.
|
|
* Provided under the BSD-3 clause.
|
|
*
|
|
* Description: AMD64 page information
|
|
* Author: Chloe M.
|
|
*/
|
|
|
|
#ifndef _MACHINE_PAGE_H_
|
|
#define _MACHINE_PAGE_H_ 1
|
|
|
|
/* Page information */
|
|
#define PAGESIZE 4096
|
|
#define LOG2_PAGESIZE 12
|
|
|
|
#endif /* !_MACHINE_PAGE_H_ */
|