blob: 85a85d635a0653d385f62c566b9b27f893fc8de6 (
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
|
#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();
gdt_init();
idt_init();
sysenter_setup();
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();
}
|