BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / blob / 18495cfe1cf5f7fc6f6b0c8c12d7f34dfded1be0 / memory / paging.h

// Related

Nucleus

Barry Improved context switching and interrupt handling d46e09a (3 years, 2 months ago)
#ifndef MEMORY_PAGING_H
#define MEMORY_PAGING_H

#include <stdint.h>
#include <nucleus/cpu.h>
#include <nucleus/memory.h>

extern page_t zeroFrame;

void early_page_fault_handler(struct InterruptFrame *frame);

#endif