mirror of
https://github.com/cowmonk/cowos.git
synced 2025-10-27 22:43:26 +00:00
10 lines
142 B
C
10 lines
142 B
C
#include <drivers/video/vga.h>
|
|
#include <string.h>
|
|
|
|
void
|
|
kernel_main(void)
|
|
{
|
|
term_init();
|
|
|
|
term_writestr("Hello World!\n");
|
|
}
|