1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#include "arch/kernel/main.hpp" #include "arch/video/vga/text.hpp" namespace teachos::arch::kernel { auto main() -> void { using namespace video::vga; text::clear(); text::cursor(false); text::write("TeachOS is starting up...", text::common_attributes::green_on_black); } } // namespace teachos::arch::kernel