blob: 6585c334493f44a32d5a38199f8cc367fd4cc751 (
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 <conv.h>
#include <def.h>
#include <gui.h>
#include <print.h>
#include <str.h>
int main()
{
print("[test loaded]\n");
struct window *win = gui_new_window();
gui_fill(win, BG_COLOR);
gui_border(win, FG_COLOR, 2);
gui_init("/font/spleen-12x24.psfu");
char *hello = "Hello, world!";
gui_write(win, win->width / 2 - (strlen(hello) * 12) / 2, 5, FG_COLOR, hello);
while (1) {
yield();
}
return 0;
}
|