blob: 5cfb7c132a9a52181e5504fa5e6d8b306e5578ad [file] [log] [blame]
Ronald G. Minnich98312442016-02-12 22:37:48 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2013 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <bootblock_common.h>
17#include <console/console.h>
18#include <program_loading.h>
19
Elyes HAOUASf5f0b7b2016-10-07 13:02:31 +020020/* The qemu part of all this is very, very non-hardware like.
21 * So it gets its own bootblock.
22 */
Ronald G. Minnich98312442016-02-12 22:37:48 +000023void main(void)
24{
25 if (IS_ENABLED(CONFIG_BOOTBLOCK_CONSOLE)) {
26 console_init();
27 }
28
29 run_romstage();
30}