diff options
author | Marvin Borner | 2020-08-16 00:44:53 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-16 00:44:53 +0200 |
commit | c4a0bc2571162ad83fc51eb823f1c535336041bf (patch) | |
tree | cba1169a027fea8884e882be601bf3cbaeaab654 /apps/init.c | |
parent | 9a827eb5f6ff58bf801bc98bcb653876428ebe69 (diff) |
Added psf/gui to libgui
...and some other things
Diffstat (limited to 'apps/init.c')
-rw-r--r-- | apps/init.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/init.c b/apps/init.c index f087b41..89d446b 100644 --- a/apps/init.c +++ b/apps/init.c @@ -2,6 +2,7 @@ #include <conv.h> #include <def.h> +#include <gui.h> #include <mem.h> #include <print.h> #include <sys.h> @@ -12,8 +13,10 @@ 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 }; + const u32 color[3] = { 0, 0, 0 }; vesa_fill(vbe, color); + gui_init("/font/spleen-16x32.psfu"); + gui_term_write(vbe, "hallo"); /* exec("/a"); */ /* exec("/b"); */ |