aboutsummaryrefslogtreecommitdiff
path: root/core/kernel.c
blob: 098db129e1fc876e2550c6a3b517221130aee1cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * Copyright (C) 2017 Robin Krahl <robin.krahl@ireas.org>
 * 
 * This program is free software: you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the Free
 * Software Foundation, either version 3 of the License, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 */

#include <garmos/idt.h>
#include <garmos/gdt.h>
#include <garmos/kernel.h>
#include <garmos/term.h>
#include <garmos/types.h>

void ker_dbg(char *s)
{
	term_print(s);
	term_print("\n");
}

uint32_t kernel_handle_interrupt(uint8_t no, uint32_t esp)
{
	return esp;
}

void kernel_main(uint32_t multiboot, unsigned int *magicno)
{
	term_clear();

	gdt_init();
	idt_init();

	idt_activate();

	term_print("garmos 0.1.0\n\n");

	while (1);
}