VFIO - Virtual Function I/O

Co-Authored-By: richardg867 <540874+richardg867@users.noreply.github.com>
This commit is contained in:
Jasmine Iwanek
2025-09-06 22:39:16 -04:00
parent da7bec3beb
commit f3f2068d1a
6 changed files with 3425 additions and 0 deletions

20
src/include/86box/vfio.h Normal file
View File

@@ -0,0 +1,20 @@
/*
* 86Box A hypervisor and IBM PC system emulator that specializes in
* running old operating systems and software designed for IBM
* PC systems and compatibles from 1981 through fairly recent
* system designs based on the PCI bus.
*
* This file is part of the 86Box distribution.
*
* Definitions for Virtual Function I/O PCI passthrough.
*
* Authors: RichardG, <richardg867@gmail.com>
*
* Copyright 2021-2025 RichardG.
*/
#if !defined(EMU_VFIO_H) && defined(USE_VFIO)
# define EMU_VFIO_H
extern void vfio_init(void);
#endif