2025-03-31 17:19:43 +03:00
|
|
|
#ifndef PAGETABLE_H
|
|
|
|
#define PAGETABLE_H
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "PTE.h"
|
|
|
|
|
|
|
|
class PageTable {
|
2025-04-01 14:10:01 +03:00
|
|
|
public:
|
|
|
|
std::vector<PTE> entries;
|
|
|
|
PTE &operator[](unsigned int index);
|
|
|
|
explicit PageTable(unsigned int entry_num);
|
|
|
|
|
2025-03-31 17:19:43 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //PAGETABLE_H
|