summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/x1_010.h
blob: 9405d1ea0d69c18816dbc4f586d791f30bc8c51e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#pragma once

#ifndef __X1_010_H__
#define __X1_010_H__

#include "devlegcy.h"


struct x1_010_interface
{
	int adr;	/* address */
};


DECLARE_READ8_DEVICE_HANDLER ( seta_sound_r );
DECLARE_WRITE8_DEVICE_HANDLER( seta_sound_w );

DECLARE_READ16_DEVICE_HANDLER ( seta_sound_word_r );
DECLARE_WRITE16_DEVICE_HANDLER( seta_sound_word_w );

void seta_sound_enable_w(device_t *device, int data);

class x1_010_device : public device_t,
                                  public device_sound_interface
{
public:
	x1_010_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
	~x1_010_device() { global_free(m_token); }

	// access to legacy token
	void *token() const { assert(m_token != NULL); return m_token; }
protected:
	// device-level overrides
	virtual void device_config_complete();
	virtual void device_start();

	// sound stream update overrides
	virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples);
private:
	// internal state
	void *m_token;
};

extern const device_type X1_010;


#endif /* __X1_010_H__ */