aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2020-08-15 18:02:49 +0200
committerMarvin Borner2020-08-15 18:02:49 +0200
commit9a827eb5f6ff58bf801bc98bcb653876428ebe69 (patch)
tree6fd75fd29a2bd55fd4e1ebb7271176abb3936115 /apps
parent9f16b032d38613ca95e321e1d1e652c43129c68b (diff)
Removed vesa from kernel
Diffstat (limited to 'apps')
-rw-r--r--apps/init.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/init.c b/apps/init.c
index 0ae4fd9..f087b41 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -12,6 +12,9 @@ void main(struct vbe *vbe)
print("Init loaded.\n");
printf("VBE: %dx%d\n", vbe->width, vbe->height);
+ const u32 color[3] = { 0, 0xff, 0 };
+ vesa_fill(vbe, color);
+
/* exec("/a"); */
/* exec("/b"); */
exit();