blob: fd9d9d09c2a3372a91bc8250e2483219848d7f53 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "kernel/vga.hpp"
namespace teachos::kernel
{
extern "C" auto kernel_main() -> void
{
vga::write("TeachOS is starting up...", static_cast<std::byte>(0x4f));
}
} // namespace teachos
|