blob: fb5b42e86955287114a6852a5493915bcd99aeb9 [file] [log] [blame]
Furquan Shaikhda01d942014-03-19 14:31:23 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2014 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 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
Vadim Bendebury15c98b02014-05-01 14:45:56 -070020#include <cbmem.h>
Furquan Shaikhda01d942014-03-19 14:31:23 -070021#include <console/console.h>
Aaron Durbine4f3e7a2015-03-17 13:25:19 -050022#include <program_loading.h>
Furquan Shaikhda01d942014-03-19 14:31:23 -070023
24void main(void)
25{
Vadim Bendebury1ea56852014-05-13 17:11:30 -070026 console_init();
Vadim Bendebury15c98b02014-05-01 14:45:56 -070027 cbmem_initialize_empty();
Aaron Durbine4f3e7a2015-03-17 13:25:19 -050028 run_ramstage();
Furquan Shaikhda01d942014-03-19 14:31:23 -070029}