aboutsummaryrefslogtreecommitdiff
path: root/hw/i386/sgx-stub.c
blob: 483c72bba6eb127f30dd94d455e78b778d20fd16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "qemu/osdep.h"
#include "hw/i386/pc.h"
#include "hw/i386/sgx-epc.h"

void pc_machine_init_sgx_epc(PCMachineState *pcms)
{
    memset(&pcms->sgx_epc, 0, sizeof(SGXEPCState));
}

int sgx_epc_get_section(int section_nr, uint64_t *addr, uint64_t *size)
{
    g_assert_not_reached();
}