File tree Expand file tree Collapse file tree 1 file changed +28
-28
lines changed Expand file tree Collapse file tree 1 file changed +28
-28
lines changed Original file line number Diff line number Diff line change 12
12
#include "stdlib.h"
13
13
#include "types.h"
14
14
15
- static char * welcome_string = ""
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
- "" ;
15
+ // static char *welcome_string = ""
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
42
43
43
uint32_t trigger_page_fault () {
44
44
uint32_t * unmapped_address = (uint32_t * ) 0x400000 ; // 4 MB
@@ -57,7 +57,7 @@ void kmain(struct kernel_memory_descriptor_t kernel_memory, uint32_t ebx) {
57
57
58
58
clear_screen ();
59
59
60
- printf (welcome_string );
60
+ // printf(welcome_string);
61
61
62
62
serial_init ();
63
63
log ("\n--------------------\ncstackOS is booting!\n--------------------\n\n" );
You can’t perform that action at this time.
0 commit comments