view src/init.c @ 15:c1212be83114

Update the sample start function to follow the new init requirements
author Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
date Thu, 07 Apr 2011 23:30:04 -0400
parents 5d9f272f4db6
children
line wrap: on
line source

/*
 * This is where everything starts
 */
void start(u64 __memsize)
{
	init_io_int();
	init_console();

	putline("Hello\n", 6);

	for(;;)
		;
}