blob: 1509efb0f12cf746dfdfc226cfc376df578d5ae2 [file] [log] [blame]
Ronald G. Minnich66bea522016-10-25 19:11:07 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2016 Google, Inc.
5 *
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
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 <program_loading.h>
17#include <console/console.h>
18
19void main(void)
20{
21 console_init();
22 run_ramstage();
23}