spz3/PageTable.h

17 lines
269 B
C
Raw Normal View History

2025-03-31 17:19:43 +03:00
#ifndef PAGETABLE_H
#define PAGETABLE_H
#include <vector>
#include "PTE.h"
2025-04-01 16:29:33 +03:00
// class PageTable {
// 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