summaryrefslogtreecommitdiffstats
path: root/src/mainboard/emulation/qemu-armv7/romstage.c
blob: 3e5803b6423c96f0c27b4f2aec836fef6bca497d (plain)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

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

void main(void)
{
	console_init();
	run_ramstage();
}