10 lines
203 B
C++
10 lines
203 B
C++
|
#include "PhysicalPage.h"
|
||
|
|
||
|
PhysicalPage::PhysicalPage(const unsigned int PPN): PPN(PPN) {
|
||
|
}
|
||
|
|
||
|
void PhysicalPage::take_up(PageTable *PT, const unsigned int idx) {
|
||
|
this->idx = idx;
|
||
|
this->PT = PT;
|
||
|
}
|