From 36e36fae364dec02999f58edbe997780d901b674 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 16 Aug 2020 15:35:43 +0200 Subject: Added WM and exec parameters --- apps/wm.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 apps/wm.c (limited to 'apps/wm.c') diff --git a/apps/wm.c b/apps/wm.c new file mode 100644 index 0000000..b9cae91 --- /dev/null +++ b/apps/wm.c @@ -0,0 +1,26 @@ +// MIT License, Copyright (c) 2020 Marvin Borner + +#include +#include +#include +#include +#include +#include + +void main(char **argv) +{ + struct vbe *vbe = (struct vbe *)argv[0]; + + print("WM loaded.\n"); + printf("VBE: %dx%d\n", vbe->width, vbe->height); + + const u32 color[3] = { 0xff, 0xff, 0 }; + const u32 text[3] = { 0, 0, 0 }; + vesa_fill(vbe, color); + gui_init("/font/spleen-16x32.psfu"); + gui_write(vbe, 50, 50, text, "hallo"); + + while (1) { + }; + exit(); +} -- cgit v1.2.3