]> git.dujemihanovic.xyz Git - nameless-os.git/blob - kernel/kernel.c
Document the code
[nameless-os.git] / kernel / kernel.c
1 void _start(void)
2 {
3 char *video_memory = (char *) 0xB8000; /* VGA VRAM starts at 0xB8000 */
4 *video_memory = 'A'; /* put an A at the beginning of the VRAM */
5 }