Files
SystemPaw3/paw/stos/head/arch/amd64/vas.h
T
2026-06-22 21:46:51 +00:00

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_ */