acrn-hypervisor/hypervisor/boot/include/boot.h
Liang Yi 8f9ec59a53 hv: modularization: cleanup boot.h
Move multiboot specific declarations from boot.h to multiboot.h.

Tracked-On: #5661
Signed-off-by: Vijay Dhanraj <vijay.dhanraj@intel.com>
Reviewed-by: Jason Chen CJ <jason.cj.chen@intel.com>
2021-01-27 15:59:47 +08:00

22 lines
350 B
C

/*
* Copyright (C) 2020 Intel Corporation. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef BOOT_H_
#define BOOT_H_
#include <types.h>
#ifndef ASSEMBLER
/* boot_regs store the multiboot info magic and address */
extern uint32_t boot_regs[2];
extern char *efiloader_sig;
#endif /* ASSEMBLER */
#endif /* BOOT_H_ */