9
|
1 #include "kernel.h"
|
|
2
|
20
|
3 void testMalloc()
|
|
4 {
|
|
5 char *a, *b;
|
23
|
6
|
|
7 printf("Testing malloc\n");
|
20
|
8 a = kmalloc(100);
|
|
9 printf("Got a at %x\n", a);
|
|
10 a[0] = 'A';
|
|
11 b = kmalloc(22);
|
|
12 printf("Got b at %x\n", b);
|
|
13 b[0] = 'B';
|
|
14 kfree(a);
|
|
15 }
|
|
16
|
26
|
17 // A test program that prints 'Hoi' to the screen:
|
|
18 unsigned char hello_program[] = {0x55, 0x48, 0x89, 0xe5, 0x48, 0x83, 0xec, 0x10, 0x48, 0xc7, 0x45, 0xf8, 0x0, 0x80, 0xb, 0x0, 0x48, 0x8b, 0x45, 0xf8, 0xc6, 0x0, 0x48, 0x48, 0x8b, 0x45, 0xf8, 0x48, 0x83, 0xc0, 0x2, 0xc6, 0x0, 0x6f, 0x48, 0x8b, 0x45, 0xf8, 0x48, 0x83, 0xc0, 0x4, 0xc6, 0x0, 0x69, 0xeb, 0xfe, 0x0, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x7a, 0x52, 0x0, 0x1, 0x78, 0x10, 0x1, 0x1b, 0xc, 0x7, 0x8, 0x90, 0x1, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0xb0, 0xff, 0xff, 0xff, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x41, 0xe, 0x10, 0x86, 0x2, 0x43, 0xd, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0};
|
24
|
19
|
9
|
20 void kmain()
|
|
21 {
|
|
22 init_screen();
|
26
|
23 setupIDT();
|
23
|
24 init_heap();
|
14
|
25
|
28
|
26 //new_task(hello_program);
|
|
27
|
|
28 // TODO: make below a user space program!
|
23
|
29 printf("Welcome!\n");
|
9
|
30
|
|
31 while (1==1)
|
|
32 {
|
|
33 char buffer[70];
|
27
|
34 printf(">");
|
9
|
35 getline(buffer, 70);
|
|
36 // TODO: interpret this line with python :)
|
|
37 printf("\n");
|
|
38 if (buffer[0] == 'x')
|
|
39 {
|
|
40 printf("System time in ms: %d\n", getTimeMS());
|
|
41 }
|
23
|
42 if (buffer[0] == 't')
|
|
43 {
|
|
44 testMalloc();
|
|
45 }
|
9
|
46 if ( strncmp(buffer, "help", 4))
|
|
47 {
|
|
48 printf("Help\n Try one of these commands:\n");
|
|
49 printf(" x: print system time in ms\n");
|
28
|
50 printf(" r: reboot\n");
|
|
51 printf(" t: test\n");
|
9
|
52 }
|
24
|
53 if (strncmp(buffer, "r", 1))
|
|
54 {
|
|
55 reboot();
|
|
56 }
|
9
|
57 }
|
|
58 }
|
|
59
|
|
60
|