blob: 6fab4ed38cd1c4270d725f660a807eaaff076bec (
plain) (
blame)
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
|
#include "types.h"
#include "multiboot.h"
#include "monitor.h"
#include "idt.h"
#include "gdt.h"
#include "paging.h"
#include "mem.h"
#include "sys.h"
#include "timer.h"
#include "task.h"
void kmain_othertask(void *data) {
while(1) monitor_write("2task ");
}
void kmain_stage2(void *data) {
sti();
thread_new(current_thread->process, kmain_othertask, 0);
while (1) monitor_write("TASK1 ");
}
void kmain(struct multiboot_info_t* mbd, int32_t magic) {
size_t totalRam = 0;
mem_placementAddr = (size_t)&end;
monitor_clear();
if (magic != MULTIBOOT_BOOTLOADER_MAGIC) {
PANIC("wrong multiboot magic number.");
}
monitor_write("Grapes::Stem is booting\n");
idt_init();
totalRam = ((mbd->mem_upper + mbd->mem_lower) * 1024);
paging_init(totalRam);
gdt_init();
paging_cleanup();
kheap_init();
timer_init(20);
tasking_init(kmain_stage2, 0);
}
|