qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

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 
     17 void empty_slot_init(const char *name, hwaddr addr, uint64_t slot_size);
     18 
     19 #endif