// // Created by rhinemann on 10.03.25. // #ifndef PTE_H #define PTE_H class PTE { public: bool P, R, M; unsigned int PPN; }; #endif //PTE_H