Files
86Box/src/include/86box/snd_speaker.h

34 lines
829 B
C
Raw Normal View History

2019-12-02 07:05:12 +01:00
/*
* 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.
*
* Header of the emulation of the PC speaker.
*
2020-03-25 00:46:02 +02:00
*
2019-12-02 07:05:12 +01:00
*
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
* Miran Grca, <mgrca8@gmail.com>
*
* Copyright 2008-2019 Sarah Walker.
* Copyright 2016-2019 Miran Grca.
*/
2022-02-18 19:42:21 -05:00
#ifndef SOUND_SPEAKER_H
#define SOUND_SPEAKER_H
2022-02-18 19:42:21 -05:00
extern int speaker_mute;
extern int speaker_gated;
extern int speaker_enable, was_speaker_enable;
extern void speaker_init(void);
extern void speaker_set_count(uint8_t new_m, int new_count);
extern void speaker_update(void);
2022-02-18 19:42:21 -05:00
#endif /*SOUND_SPEAKER_H*/