blob: e7adf5ff972c87bda8dc23a84f836d938cc96b15 [file] [log] [blame]
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2013 Google Inc. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include <types.h>
#include <armv7.h>
#include <cbfs.h>
#include <program_loading.h>
#include <console/console.h>
void main(void)
{
console_init();
printk(BIOS_INFO, "Hello from romstage.\n");
run_ramstage();
}