aboutsummaryrefslogtreecommitdiff
path: root/apps/wm.c
blob: b9cae91b014866b653d2164450a3593d0a56f0fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// MIT License, Copyright (c) 2020 Marvin Borner

#include <cpu.h>
#include <def.h>
#include <gui.h>
#include <print.h>
#include <sys.h>
#include <vesa.h>

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();
}