summaryrefslogtreecommitdiff
path: root/src/mainboard/cubietech/cubieboard/romstage.c
blob: 19192cdc4017db6dca9a22e1120cd6db616229a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Placeholder for Cubieboard romstage
 *
 * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me@gmail.com>
 * Subject to the GNU GPL v2, or (at your option) any later version.
 */

#include <console/console.h>

void main(void)
{
	console_init();
	printk(BIOS_INFO, "You have managed to succesfully load romstage.\n");
}