summaryrefslogtreecommitdiff
path: root/src/mainboard/ti/beaglebone/romstage.c
blob: 6e6b474b87c3ee45e26dc900811c74bac7be762d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <program_loading.h>
#include <console/console.h>

void main(void)
{
	console_init();
	printk(BIOS_INFO, "Hello from romstage.\n");

	run_ramstage();
}