aboutsummaryrefslogtreecommitdiff
path: root/source/kernel/arch/x86_64/include
diff options
context:
space:
mode:
Diffstat (limited to 'source/kernel/arch/x86_64/include')
-rw-r--r--source/kernel/arch/x86_64/include/kernel/vga.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/source/kernel/arch/x86_64/include/kernel/vga.hpp b/source/kernel/arch/x86_64/include/kernel/vga.hpp
new file mode 100644
index 0000000..ee5a808
--- /dev/null
+++ b/source/kernel/arch/x86_64/include/kernel/vga.hpp
@@ -0,0 +1,11 @@
+#ifndef TEACHOS_KERNEL_VGA_HPP
+#define TEACHOS_KERNEL_VGA_HPP
+
+#include <string_view>
+
+namespace teachos::kernel::vga
+{
+ auto write(std::string_view text, std::byte color) -> void;
+}
+
+#endif \ No newline at end of file