Luna/kernel/src/main.cpp

14 lines
219 B
C++
Raw Normal View History

2022-11-13 10:25:15 +00:00
#include "Framebuffer.h"
2022-11-13 09:30:10 +00:00
#include "arch/Serial.h"
2022-10-16 13:31:58 +00:00
2022-09-05 14:13:51 +00:00
extern "C" void _start()
{
2022-11-13 09:30:10 +00:00
Serial::println("Hello, world!");
2022-11-13 10:25:15 +00:00
Framebuffer::init();
Framebuffer::rect(0, 0, 200, 200, 0xFF00FF00);
2022-11-13 09:09:09 +00:00
for (;;)
;
2022-09-05 14:13:51 +00:00
}