KernOS
kprintf.cpp
Go to the documentation of this file.
1 //
2 // Created on 5/24/20.
3 //
4 
5 #include <kprintf.h>
6 #include <vga.h>
7 
8 namespace VGA
9 {
10  extern Vga Display;
11 }
12 
13 void kprintf(const char* Str)
14 {
15  VGA::Display.Puts(Str);
16 }
17 
Vga Display
Definition: vga.cpp:9
Video Graphics Array namespace.
Definition: vga.h:9
void kprintf(const char *Str)
Prints string to display.
Definition: kprintf.cpp:13
void Puts(const char *Str)
Print string to display.
Definition: vga.cpp:54