omos-tcnj2024/sys/sysinit.c

16 lines
228 B
C
Raw Normal View History

2024-02-18 03:53:36 +01:00
#include <types.h>
2024-02-18 16:30:09 +01:00
#include <extern.h>
2024-02-17 23:19:28 +01:00
void
2024-02-18 01:16:13 +01:00
sysinit(void)
{
char *howdy = "Om Smart.";
2024-02-18 13:38:08 +01:00
2024-02-18 01:16:13 +01:00
vga_clearscreen();
2024-02-18 16:30:09 +01:00
vga_write("Starting omOS...", 16, 0x0F);
2024-02-18 17:50:47 +01:00
char thing = waitkey();
vga_write(&thing, 1, 0x1F);
2024-02-18 17:59:03 +01:00
// memory_init();
2024-02-17 23:19:28 +01:00
}