diff options
author | Marvin Borner | 2020-08-15 18:02:49 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-15 18:02:49 +0200 |
commit | 9a827eb5f6ff58bf801bc98bcb653876428ebe69 (patch) | |
tree | 6fd75fd29a2bd55fd4e1ebb7271176abb3936115 /apps | |
parent | 9f16b032d38613ca95e321e1d1e652c43129c68b (diff) |
Removed vesa from kernel
Diffstat (limited to 'apps')
-rw-r--r-- | apps/init.c | 3 |
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(); |