summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/beep.h
blob: 62a31952554518ed178d418a7cc03828df4c49d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#ifndef __BEEP_H__
#define __BEEP_H__

#include "devlegcy.h"

#define BEEPER_TAG		"beeper"

void beep_set_state(device_t *device, int on);
void beep_set_frequency(device_t *device, int frequency);
void beep_set_volume(device_t *device, int volume);

DECLARE_LEGACY_SOUND_DEVICE(BEEP, beep);

#endif /* __BEEP_H__ */