#include "x86_64/debug/qemu_output.hpp" #include "kapi/cio.hpp" #include namespace teachos::debug::x86_64 { qemu_output::qemu_output(output_device & lower) : m_lower{lower} {} auto qemu_output::write(cio::output_stream stream, std::string_view text) -> void { for (auto c : text) { dbg::write(c); } m_lower.write(stream, text); } } // namespace teachos::debug::x86_64