blob: 0d0bd7b60f47805304d59028178250b8e57b5078 (
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
|
// license:BSD-3-Clause
// copyright-holders:Fabio Priuli
#ifndef __NES_PT554_H
#define __NES_PT554_H
#include "nxrom.h"
// ======================> nes_bandai_pt554_device
class nes_bandai_pt554_device : public nes_cnrom_device
{
public:
// construction/destruction
nes_bandai_pt554_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// device-level overrides
virtual machine_config_constructor device_mconfig_additions() const;
virtual DECLARE_WRITE8_MEMBER(write_m);
private:
required_device<samples_device> m_samples;
};
// device type definition
extern const device_type NES_BANDAI_PT554;
#endif
|