blob: 0193514136073cc159e1827a8b49b5909d3206d3 (
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
|
#include <kernel/gdt.h>
#include <kernel/idt.h>
#include <kernel/mem.h>
#include <kernel/panic.h>
#include <kernel/proc.h>
#include <kernel/tty.h>
#include <platform/asm.h>
void r3_test();
void kmain()
{
tty_clear();
tty_const("gdt...");
gdt_init();
tty_const("idt...");
idt_init();
tty_const("sysenter...");
sysenter_setup();
tty_const("mem...");
mem_init();
tty_const("creating process...");
struct process *proc = process_new(r3_test);
tty_const("switching...");
process_switch(proc);
}
void r3_test() {
tty_const("ok");
asm("cli");
panic();
}
|