예제 #1
0
파일: main.c 프로젝트: 0prj/asm3u
int main (void)
{
	/* Insert system clock initialization code here (sysclk_init()). */
	boot_init();
	/* Insert application code here, after the board has been initialized. */
	boot_main();
}
예제 #2
0
void
interface_init(void)
{
    // Running at new code address - do code relocation fixups
    malloc_init();

    // Setup romfile items.
    qemu_cfg_init();
    coreboot_cbfs_init();

    // Setup ivt/bda/ebda
    ivt_init();
    bda_init();

    // Other interfaces
    boot_init();
    bios32_init();
    pmm_init();
    pnp_init();
    kbd_init();
    mouse_init();
}