diff options
| author | Christian Cunningham <cc@localhost> | 2022-04-06 11:40:02 -0700 | 
|---|---|---|
| committer | Christian Cunningham <cc@localhost> | 2022-04-06 11:40:02 -0700 | 
| commit | d40c62b7ba5f965d1ef28419983869e0732285d7 (patch) | |
| tree | 626ea9f3c1d4b6b19208c300b941c81fbafb0584 | |
| parent | c91e11c05885a62a9c3ef2bb5af5834edde959c9 (diff) | |
Clear screen initially
| -rw-r--r-- | kernel/sys/core.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sys/core.c b/kernel/sys/core.c index 2169b7e..dafd545 100644 --- a/kernel/sys/core.c +++ b/kernel/sys/core.c @@ -30,7 +30,7 @@ void sysinit(void)  	// Graphics Initialize  	lfb_init(1920, 1080); -	lfb_showpicture(); +	clear_screen();  	// Initialize Memory Management Unit  	mmu_init();  | 
