Added dependencies on CI

This commit is contained in:
Jose Phillips 2024-12-01 19:04:55 -05:00
parent 43b5da20de
commit 984a71ccfb
4 changed files with 23 additions and 0 deletions

View file

@ -16,3 +16,4 @@ ghostscript
libslirp
vde2
libsndfile
libserialport

View file

@ -14,3 +14,4 @@ qt5-static
qt5-translations
vulkan-headers
libsndfile
ibserialport

View file

@ -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

View file

@ -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>