aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/kernel/main.cpp
blob: 0e90264ac426bc647ae55bc387f90f5dc996119b (plain)
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