2021-12-20 11:14:40 +05:00
|
|
|
/*
|
|
|
|
We don't include <kernaux/asm/*.h> because they
|
|
|
|
contain architecture-specific assembly functions.
|
|
|
|
|
|
|
|
We don't include <kernaux/libc.h> because it may
|
|
|
|
conflict with actual freestanding or hosted libc.
|
|
|
|
*/
|
|
|
|
|
2021-12-15 01:37:11 +05:00
|
|
|
#include <kernaux/assert.h>
|
2021-12-14 02:54:35 +05:00
|
|
|
#include <kernaux/cmdline.h>
|
2022-01-10 09:45:02 +05:00
|
|
|
#include <kernaux/console.h>
|
2021-12-14 02:54:35 +05:00
|
|
|
#include <kernaux/elf.h>
|
2022-01-11 13:58:47 +05:00
|
|
|
#include <kernaux/framebuffer.h>
|
2021-12-15 15:45:40 +05:00
|
|
|
#include <kernaux/itoa.h>
|
2021-12-14 02:54:35 +05:00
|
|
|
#include <kernaux/multiboot2.h>
|
|
|
|
#include <kernaux/pfa.h>
|
|
|
|
#include <kernaux/printf.h>
|
|
|
|
#include <kernaux/units.h>
|
2021-12-26 11:20:39 +05:00
|
|
|
|
|
|
|
#include <kernaux/arch/i386.h>
|
|
|
|
#include <kernaux/arch/x86_64.h>
|