omos-tcnj2024/sys/sysinit.c

11 lines
131 B
C
Raw Normal View History

2024-02-18 03:53:36 +01:00
#include <types.h>
2024-02-17 23:19:28 +01:00
void
2024-02-18 01:16:13 +01:00
sysinit(void)
{
2024-02-18 13:38:08 +01:00
char *howdy = "Om Smart";
2024-02-18 01:16:13 +01:00
vga_clearscreen();
2024-02-18 13:38:08 +01:00
vga_write(howdy, strlen(howdy), 0x1f);
2024-02-17 23:19:28 +01:00
}