#include <stdio.h>
#include <multiboot.h>
#include <lmm.public.h>
#include <x86/seg.h>
#include <x86/pic.h>
#include <x86/base_irq.h>
Functions | |
int | main () |
Kernel entrypoint. | |
Variables | |
lmm_t | malloc_lmm |
multiboot_info | boot_info |
This file contains the kernel's main() function.
You should add your own comments to replace this one.
This is where you will eventually setup your game board and have it run.
Fred Hacker (fhacker)
|
Kernel entrypoint. This is the entrypoint for your kernel. You will use this to test and debug your drivers and it will eventually hold the code for your game. Right now, it is A tight while loop.
|