2021-12-20 01: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-14 15:37:11 -05:00
|
|
|
#include <kernaux/assert.h>
|
2021-12-13 16:54:35 -05:00
|
|
|
#include <kernaux/cmdline.h>
|
2022-01-09 23:45:02 -05:00
|
|
|
#include <kernaux/console.h>
|
2021-12-13 16:54:35 -05:00
|
|
|
#include <kernaux/elf.h>
|
2022-01-11 03:58:47 -05:00
|
|
|
#include <kernaux/framebuffer.h>
|
2022-01-17 00:58:47 -05:00
|
|
|
#include <kernaux/mbr.h>
|
2021-12-13 16:54:35 -05:00
|
|
|
#include <kernaux/multiboot2.h>
|
2022-01-19 05:35:02 -05:00
|
|
|
#include <kernaux/ntoa.h>
|
2021-12-13 16:54:35 -05:00
|
|
|
#include <kernaux/pfa.h>
|
|
|
|
#include <kernaux/printf.h>
|
|
|
|
#include <kernaux/units.h>
|
2021-12-26 01:20:39 -05:00
|
|
|
|
|
|
|
#include <kernaux/arch/i386.h>
|
2022-01-15 05:09:45 -05:00
|
|
|
#include <kernaux/arch/riscv64.h>
|
2021-12-26 01:20:39 -05:00
|
|
|
#include <kernaux/arch/x86_64.h>
|