mirror of
https://github.com/86Box/86Box.git
synced 2025-01-22 09:11:50 -05:00
Added dependencies on CI
This commit is contained in:
parent
43b5da20de
commit
984a71ccfb
4 changed files with 23 additions and 0 deletions
|
@ -16,3 +16,4 @@ ghostscript
|
|||
libslirp
|
||||
vde2
|
||||
libsndfile
|
||||
libserialport
|
||||
|
|
|
@ -14,3 +14,4 @@ qt5-static
|
|||
qt5-translations
|
||||
vulkan-headers
|
||||
libsndfile
|
||||
ibserialport
|
|
@ -32,6 +32,7 @@ add_library(snd OBJECT
|
|||
snd_adlib.c
|
||||
snd_adlibgold.c
|
||||
snd_opl2board.c
|
||||
snd_opl_opl2board.cpp
|
||||
snd_ad1848.c
|
||||
snd_audiopci.c
|
||||
snd_azt2316a.c
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
/*
|
||||
* 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.
|
||||
*
|
||||
* Interface to the OPL2Board External audio device (USB)
|
||||
*
|
||||
*
|
||||
* Authors: Jose Phillips <jose@hddlive.net>
|
||||
* Fred N. van Kempen, <decwiz@yahoo.com>
|
||||
* Miran Grca, <mgrca8@gmail.com>
|
||||
*
|
||||
* Copyright 2024 Jose Phillips.
|
||||
* Copyright 2017-2020 Fred N. van Kempen.
|
||||
* Copyright 2016-2020 Miran Grca.
|
||||
*/
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
|
|
Loading…
Reference in a new issue