soc/intel/ptl: Update ME specification version to 21
[coreboot.git] / src / mainboard / emulation / qemu-power8 / bootblock.c
blob397af094a75d21b81b1f80e5b66a84f591f24131
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <console/console.h>
4 #include <program_loading.h>
6 void qemu_power8_main(void);
8 /* The qemu part of all this is very, very non-hardware like.
9 * So it gets its own bootblock.
11 void qemu_power8_main(void)
13 if (CONFIG(BOOTBLOCK_CONSOLE)) {
14 console_init();
17 run_romstage();