2025-03-31 17:19:43 +03:00
|
|
|
#include "MMU.h"
|
|
|
|
|
2025-04-01 14:10:01 +03:00
|
|
|
void MMU::access(Kernel *kernel, PageTable *table, const unsigned int index, const AccessType type) {
|
|
|
|
if ((*table)[index].P)
|
|
|
|
kernel->page_fault(table, index);
|
|
|
|
(*table)[index].R = true;
|
2025-03-31 17:19:43 +03:00
|
|
|
|
|
|
|
if (type == WRITE)
|
2025-04-01 14:10:01 +03:00
|
|
|
(*table)[index].M = true;
|
2025-03-31 17:19:43 +03:00
|
|
|
}
|