mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2026-01-06 08:04:55 +00:00
Replace the BSD-3-Clause boiler plate license text with an SPDX tag. Fixes: #189 Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
39 lines
660 B
C
39 lines
660 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef HV_ARCH_H
|
|
#define HV_ARCH_H
|
|
|
|
#include <cpu.h>
|
|
#include <gdt.h>
|
|
#include <idt.h>
|
|
#include <apicreg.h>
|
|
#include <ioapic.h>
|
|
#include <lapic.h>
|
|
#include <msr.h>
|
|
#include <io.h>
|
|
#include <vcpu.h>
|
|
#include <trusty.h>
|
|
#include <pm.h>
|
|
#include <vm.h>
|
|
#include <cpuid.h>
|
|
#include <mmu.h>
|
|
#include <irq.h>
|
|
#include <timer.h>
|
|
#include <softirq.h>
|
|
#include <vmx.h>
|
|
#include <assign.h>
|
|
#include <vtd.h>
|
|
|
|
#include <vpic.h>
|
|
#include <vlapic.h>
|
|
#include <vioapic.h>
|
|
#include <guest.h>
|
|
#include <vmexit.h>
|
|
#include <cpufeatures.h>
|
|
|
|
#endif /* HV_ARCH_H */
|