spz3/PageTable.h

15 lines
212 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"
class PageTable {
public:
std::vector<PTE> entries;
PTE &operator[](unsigned int index);
2025-03-31 17:19:43 +03:00
};
#endif //PAGETABLE_H