#include "kapi/cio.hpp" #include "x86_64/vga/text.hpp" namespace teachos::cio { auto static constinit vga_device = std::optional{}; auto init() -> void { vga_device.emplace(); set_output_device(*vga_device); } } // namespace teachos::cio