|
@@ -1,4 +1,6 @@
|
|
|
#define _KERNEL_VGA_C_
|
|
|
+#include <types/stdint.h>
|
|
|
+
|
|
|
#include <kernel/vga.h>
|
|
|
|
|
|
static struct vga_char* p_vga_head = VGA_MEM;
|
|
@@ -9,7 +11,7 @@ void vga_put_char(struct vga_char* c)
|
|
|
++p_vga_head;
|
|
|
}
|
|
|
|
|
|
-void vga_printk(const char* str, uint8_t color)
|
|
|
+void vga_printk(const int8_t* str, uint8_t color)
|
|
|
{
|
|
|
struct vga_char s_c;
|
|
|
s_c.color = color;
|