not working

This commit is contained in:
2026-01-19 17:18:12 +01:00
parent 30a48d25d2
commit f70f29cea3
5 changed files with 117 additions and 7 deletions

View File

@@ -6,13 +6,9 @@
class PageFrame {
private:
public:
uintptr_t address;
uintptr_t mapped_address;
bool available;
PageFrame* queue_link;
uint16_t ref_count;
PageFrame(){};
PageFrame(uintptr_t a):address(a){};
uintptr_t getAddr(){return address;};
uintptr_t getVirtualAddr(){return address;};
};
#endif