From 984a71ccfb90c64fc6879876639f984c3fd64a25 Mon Sep 17 00:00:00 2001 From: Jose Phillips Date: Sun, 1 Dec 2024 19:04:55 -0500 Subject: [PATCH] Added dependencies on CI --- .ci/dependencies_macports.txt | 1 + .ci/dependencies_msys.txt | 1 + src/sound/CMakeLists.txt | 1 + src/sound/snd_opl2board.c | 20 ++++++++++++++++++++ 4 files changed, 23 insertions(+) diff --git a/.ci/dependencies_macports.txt b/.ci/dependencies_macports.txt index b23ac441d..e530871ae 100644 --- a/.ci/dependencies_macports.txt +++ b/.ci/dependencies_macports.txt @@ -16,3 +16,4 @@ ghostscript libslirp vde2 libsndfile +libserialport diff --git a/.ci/dependencies_msys.txt b/.ci/dependencies_msys.txt index eacdb8b36..1d4692d3f 100644 --- a/.ci/dependencies_msys.txt +++ b/.ci/dependencies_msys.txt @@ -14,3 +14,4 @@ qt5-static qt5-translations vulkan-headers libsndfile +ibserialport \ No newline at end of file diff --git a/src/sound/CMakeLists.txt b/src/sound/CMakeLists.txt index b77ad423a..e25c39391 100644 --- a/src/sound/CMakeLists.txt +++ b/src/sound/CMakeLists.txt @@ -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 diff --git a/src/sound/snd_opl2board.c b/src/sound/snd_opl2board.c index 1ad147e8c..57fafbae7 100644 --- a/src/sound/snd_opl2board.c +++ b/src/sound/snd_opl2board.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 + * Fred N. van Kempen, + * Miran Grca, + * + * Copyright 2024 Jose Phillips. + * Copyright 2017-2020 Fred N. van Kempen. + * Copyright 2016-2020 Miran Grca. + */ + #include #include #include