532e46c62f
Signed-off-by: Chloe M. <chloe@mensia.org>
24 lines
374 B
C
24 lines
374 B
C
/*
|
|
* Copyright (c) 2026, Chloe M.
|
|
* Provided under the BSD-3 clause.
|
|
*
|
|
* Description: MD virtual address space
|
|
* Author: Chloe M.
|
|
*/
|
|
|
|
#ifndef _MACHINE_VAS_H_
|
|
#define _MACHINE_VAS_H_ 1
|
|
|
|
#include <stdef.h>
|
|
|
|
/*
|
|
* Represents a virtual address space
|
|
*
|
|
* @Cr3: Control register 3 value
|
|
*/
|
|
typedef struct {
|
|
UPTR Cr3;
|
|
} MMU_VAS;
|
|
|
|
#endif /* !_MACHINE_VAS_H_ */
|