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