blob: b6314ccd1cca83646f96a5fece8aa9456b376e73 [file] [log] [blame]
Ronald G. Minniche0e784a2014-11-26 19:25:47 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 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
Ronald G. Minniche0e784a2014-11-26 19:25:47 +000016#include <console/console.h>
Aaron Durbine4f3e7a2015-03-17 13:25:19 -050017#include <program_loading.h>
Ronald G. Minniche0e784a2014-11-26 19:25:47 +000018
19void main(void)
20{
Ronald G. Minniche0e784a2014-11-26 19:25:47 +000021 console_init();
Aaron Durbine4f3e7a2015-03-17 13:25:19 -050022 run_ramstage();
Ronald G. Minniche0e784a2014-11-26 19:25:47 +000023}