spz3/PTE.h

12 lines
119 B
C++

#ifndef PTE_H
#define PTE_H
class PTE {
public:
bool P, R, M;
unsigned int PPN;
PTE();
};
#endif //PTE_H