Luna/kernel/src/main.cpp

9 lines
116 B
C++
Raw Normal View History

2022-11-13 10:30:10 +01:00
#include "arch/Serial.h"
2022-10-16 15:31:58 +02:00
2022-09-05 16:13:51 +02:00
extern "C" void _start()
{
2022-11-13 10:30:10 +01:00
Serial::println("Hello, world!");
2022-11-13 10:09:09 +01:00
for (;;)
;
2022-09-05 16:13:51 +02:00
}