blob: 6cc9bfaccc8dbf7617c6b9e26e41814b4260132d (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// MIT License, Copyright (c) 2021 Marvin Borner
#include <log.h>
#define VGA_WIDTH 80
#define VGA_HEIGHT 25
#define VGA_ADDRESS 0xb8000
void vga_clear(void)
{
u16 *out = (u16 *)VGA_ADDRESS;
for (u16 i = 0; i < 80 * 25; i++)
out[i] = 0;
}
void vga_put_at(char ch, u8 x, u8 y, u8 color)
{
u8 *out = (u8 *)(VGA_ADDRESS + 2 * (x + y * VGA_WIDTH));
*out++ = ch;
*out++ = color;
}
static void vga_put(char ch)
{
static u8 x = 0;
static u8 y = 0;
if (ch == '\n') {
x = 0;
y++;
return;
} else if (x + 1 == VGA_WIDTH) {
x = 0;
y++;
} else if (y + 1 == VGA_HEIGHT) {
x = 0;
y = 0;
vga_clear();
}
u8 *out = (u8 *)(VGA_ADDRESS + 2 * (x + y * VGA_WIDTH));
*out++ = ch;
*out++ = 0x07;
x++;
}
static void vga_print(const char *data)
{
for (const char *p = data; *p; p++)
vga_put(*p);
}
void vga_log(const char *format, ...)
{
char buf[1024] = { 0 };
va_list ap;
va_start(ap, format);
vsnprintf(buf, sizeof(buf), format, ap);
va_end(ap);
vga_print(buf);
}
|