aboutsummaryrefslogtreecommitdiff
path: root/hw/adlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/adlib.c')
-rw-r--r--hw/adlib.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/hw/adlib.c b/hw/adlib.c
index 805365e70..1376db919 100644
--- a/hw/adlib.c
+++ b/hw/adlib.c
@@ -21,11 +21,20 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
+
#include <assert.h>
-#include "vl.h"
+#include "hw.h"
+#include "audiodev.h"
+#include "audio/audio.h"
+
+//#define DEBUG
#define ADLIB_KILL_TIMERS 1
+#ifdef DEBUG
+#include "qemu-timer.h"
+#endif
+
#define dolog(...) AUD_log ("adlib", __VA_ARGS__)
#ifdef DEBUG
#define ldebug(...) dolog (__VA_ARGS__)