BarinkOS/src/kernel/kernel.h

28 lines
538 B
C
Raw Normal View History

#pragma once
extern "C"{
#include "../libc/include/string.h"
}
#include "vga/VBE.h"
#include "tty/kterm.h"
#include "./bootloader/multiboot.h"
2021-10-23 11:26:15 +00:00
#include "bootcheck.h"
#include "memory/physical/PhysicalMemoryManager.h"
#include "memory/frames/PageFrameAllocator.h"
#include "gdt/gdtc.h"
#include "idt/idt.h"
2021-10-23 11:26:15 +00:00
#include "pit.h"
#include "io.h"
#include "cpu.h"
#include "serial.h"
2021-07-22 19:02:47 +00:00
#include "time.h"
#include "sv-terminal/superVisorTerminal.h"
#define CHECK_FLAG(flags, bit) ((flags) & (1 <<(bit)))
#define PANIC(message) {return;}
2021-07-22 19:02:47 +00:00