cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

empty_slot.h (395B)


      1/*
      2 * QEMU Empty Slot
      3 *
      4 * The empty_slot device emulates known to a bus but not connected devices.
      5 *
      6 * Copyright (c) 2010 Artyom Tarasenko
      7 *
      8 * This code is licensed under the GNU GPL v2 or (at your option) any later
      9 * version.
     10 */
     11
     12#ifndef HW_EMPTY_SLOT_H
     13#define HW_EMPTY_SLOT_H
     14
     15#include "exec/hwaddr.h"
     16
     17void empty_slot_init(const char *name, hwaddr addr, uint64_t slot_size);
     18
     19#endif