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

34 lines
897 B
C
Raw Normal View History

2019-12-02 07:05:12 +01:00
/*
2023-01-06 15:36:05 -05: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.
2019-12-02 07:05:12 +01:00
*
2023-01-06 15:36:05 -05:00
* This file is part of the 86Box distribution.
2019-12-02 07:05:12 +01:00
*
2023-01-06 15:36:05 -05:00
* Header of the emulation of the PC speaker.
2019-12-02 07:05:12 +01:00
*
2020-03-25 00:46:02 +02:00
*
2019-12-02 07:05:12 +01:00
*
2023-01-06 15:36:29 -05:00
* Authors: Sarah Walker, <https://pcem-emulator.co.uk/>
2023-01-06 15:36:05 -05:00
* Miran Grca, <mgrca8@gmail.com>
2019-12-02 07:05:12 +01:00
*
2023-01-06 15:36:05 -05:00
* Copyright 2008-2019 Sarah Walker.
* Copyright 2016-2019 Miran Grca.
2019-12-02 07:05:12 +01:00
*/
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*/