blob: b801da9c6cbf0dafc5f4f1cfb20dc207d5d49cb3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include <def.h>
// This must kinda be at the top
int main(u32 *mem_info, u32 *vid_info)
{
mem_info++; // TODO: Use the mmap!
vid_info++; // TODO: Use the VBE struct!
while (1) {
};
return 0;
}
|