spz3/PageTable.h

19 lines
247 B
C
Raw Normal View History

2025-03-31 17:19:43 +03:00
//
// Created by rhinemann on 10.03.25.
//
#ifndef PAGETABLE_H
#define PAGETABLE_H
#include <vector>
#include "PTE.h"
class PageTable {
public:
std::vector<PTE> entries;
PTE &operator[](int index);
};
#endif //PAGETABLE_H