summaryrefslogtreecommitdiffstats
path: root/src/arch/x86/verstage.c
blob: 2be33e230c0b431be5fc545847c07efc90094164 (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 <arch/cpu.h>
#include <main_decl.h>

/* Provide an entry point for verstage when it's a separate stage. */
asmlinkage void car_stage_entry(void)
{
	main();
}