summaryrefslogtreecommitdiff
path: root/src/kernel/main.h
blob: edceb76e649de0dd48ce1c7c5d0c7102a552e043 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once
#include <stddef.h>

struct kmain_info {
	struct {
		void *at; /* page aligned */
		size_t size;
	} init; /* a boot module loaded by GRUB, containing the initrd driver */
	struct {
		void *at;
		size_t size;
	} fb; /* the framebuffer */
	void *memtop;
};

void kmain(struct kmain_info);

void shutdown(void);