src folder -> source folder; makes merging with dev a bit easier.
This commit is contained in:
43
source/kernel/kernel.h
Normal file
43
source/kernel/kernel.h
Normal file
@ -0,0 +1,43 @@
|
||||
#pragma once
|
||||
extern "C"
|
||||
{
|
||||
#include "../libc/include/string.h"
|
||||
}
|
||||
|
||||
|
||||
#include "drivers/VGA/VBE.h"
|
||||
#include "tty/kterm.h"
|
||||
|
||||
#include "./bootloader/multiboot.h"
|
||||
#include "bootinfo.h"
|
||||
|
||||
#include "memory/memory.h"
|
||||
#include "memory/memoryinfo.h"
|
||||
#include "bootcheck.h"
|
||||
|
||||
#include "gdt/gdtc.h"
|
||||
#include "idt/idt.h"
|
||||
|
||||
#include "drivers/IO/io.h"
|
||||
#include "time.h"
|
||||
#include "pit.h"
|
||||
|
||||
#include "cpu.h"
|
||||
#include "serial.h"
|
||||
#include "drivers/IO/PCI/pci.h"
|
||||
#include "ide/ide.h"
|
||||
#include "./drivers/IO/ata/ataDevice.h"
|
||||
#include "./PartitionTable/MBR/MasterBootRecord.h"
|
||||
#include "./filesystems/FAT/BiosParameterBlock.h"
|
||||
#include "./filesystems/FAT/ExtendBootRecord.h"
|
||||
#include "./filesystems/FAT/DirectoryEntry.h"
|
||||
#include "drivers/ACPI/rsdp.h"
|
||||
|
||||
|
||||
#include "time.h"
|
||||
#include "sv-terminal/superVisorTerminal.h"
|
||||
|
||||
#define CHECK_FLAG(flags, bit) ((flags) & (1 <<(bit)))
|
||||
#define PANIC(message) {return;}
|
||||
|
||||
|
Reference in New Issue
Block a user