15 lines
164 B
C++
15 lines
164 B
C++
//
|
|
// 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
|