44 lines
884 B
C
44 lines
884 B
C
#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;}
|
|
|
|
|