blob: 30d2d71a07a2e3be0302dda8f5e6c4a39b0e23ba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
#ifndef __ICS2115_H__
#define __ICS2115_H__
typedef struct _ics2115_interface ics2115_interface;
struct _ics2115_interface {
void (*irq_cb)(running_device *, int);
};
READ8_DEVICE_HANDLER( ics2115_r );
WRITE8_DEVICE_HANDLER( ics2115_w );
DEVICE_GET_INFO( ics2115 );
#define SOUND_ICS2115 DEVICE_GET_INFO_NAME( ics2115 )
#endif /* __ICS2115_H__ */
|