coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
romstage.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <console/console.h>
4 #include <program_loading.h>
5 
6 void main(void)
7 {
8  console_init();
9  run_ramstage();
10 }
void main(void)
Definition: romstage.c:13
void console_init(void)
Definition: init.c:49
void run_ramstage(void)
Definition: prog_loaders.c:85