blob: 40a7de1510f5054c1c3f50b85651afb5b848b001 [file] [log] [blame]
Thaminda Edirisooriya8fad21d2015-07-29 17:43:20 -07001/*
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.
Thaminda Edirisooriya8fad21d2015-07-29 17:43:20 -070014 */
15
16#include <arch/exception.h>
17#include <bootblock_common.h>
18#include <console/console.h>
19#include <program_loading.h>
20
21// the qemu part of all this is very, very non-hardware like.
22// so it gets its own bootblock.
23void main(void)
24{
25 if (IS_ENABLED(CONFIG_BOOTBLOCK_CONSOLE)) {
26 console_init();
27 exception_init();
28 }
29 run_romstage();
30}