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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// license:BSD-3-Clause
// copyright-holders:Ernesto Corvi
#pragma once
#ifndef __2612INTF_H__
#define __2612INTF_H__
#include "emu.h"
void ym2612_update_request(void *param);
#define MCFG_YM2612_IRQ_HANDLER(_devcb) \
devcb = &ym2612_device::set_irq_handler(*device, DEVCB_##_devcb);
class ym2612_device : public device_t,
public device_sound_interface
{
public:
ym2612_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
ym2612_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
// static configuration helpers
template<class _Object> static devcb_base &set_irq_handler(device_t &device, _Object object) { return downcast<ym2612_device &>(device).m_irq_handler.set_callback(object); }
DECLARE_READ8_MEMBER( read );
DECLARE_WRITE8_MEMBER( write );
void _IRQHandler(int irq);
void _timer_handler(int c,int count,int clock);
void _ym2612_update_request();
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_post_load() override;
virtual void device_stop() override;
virtual void device_reset() override;
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
// sound stream update overrides
virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) override;
private:
sound_stream * m_stream;
emu_timer * m_timer[2];
void * m_chip;
devcb_write_line m_irq_handler;
};
extern const device_type YM2612;
class ym3438_device : public ym2612_device
{
public:
ym3438_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
};
extern const device_type YM3438;
#endif /* __2612INTF_H__ */
|