blob: 26ae7301635854a7094949b61ebb33c296d15f80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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::write("TeachOS is starting up...", text::common_attributes::green_on_black);
}
} // namespace teachos::arch::kernel
|