mirror of
https://github.com/cowmonk/cowos.git
synced 2026-03-13 16:43:29 +00:00
11 lines
153 B
C
11 lines
153 B
C
|
|
#include "../include/drivers/video/vga.h"
|
||
|
|
#include <string.h>
|
||
|
|
|
||
|
|
void
|
||
|
|
kernel_main(void)
|
||
|
|
{
|
||
|
|
term_init();
|
||
|
|
|
||
|
|
term_writestr("Hello World!\n");
|
||
|
|
}
|