diff options
author | Marvin Borner | 2020-08-15 17:42:36 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-15 17:42:36 +0200 |
commit | 9f16b032d38613ca95e321e1d1e652c43129c68b (patch) | |
tree | 33f71a84f60b496ed31a128ec542c5341c754b0d /apps/init.c | |
parent | 32b8722128dfb4ca9e814940a23c2b22a283bb12 (diff) |
Added libgui
Diffstat (limited to 'apps/init.c')
-rw-r--r-- | apps/init.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/init.c b/apps/init.c index 5e88eff..0ae4fd9 100644 --- a/apps/init.c +++ b/apps/init.c @@ -5,12 +5,14 @@ #include <mem.h> #include <print.h> #include <sys.h> +#include <vesa.h> -void main() +void main(struct vbe *vbe) { print("Init loaded.\n"); + printf("VBE: %dx%d\n", vbe->width, vbe->height); - exec("/a"); - exec("/b"); + /* exec("/a"); */ + /* exec("/b"); */ exit(); } |