aboutsummaryrefslogtreecommitdiff
path: root/toast.h
blob: 6299fb96ef6018adf53ff9f90d800d074ec03c23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __TOAST_H
#define __TOAST_H

#define KERNEL_VERSION		"0.1"
#define KERNEL_NICKNAME		"Unstable"

#include <stdbool.h>			// Get our booleans defined
#include <stdint.h>				// uint_8 etc

#include <console.h>
#include <lowlevel.h>
#include <string.h>

// KERNEL.C
void kernel_main();

#endif