diff options
author | 2015-09-13 08:41:44 +0200 | |
---|---|---|
committer | 2015-09-13 08:41:44 +0200 | |
commit | f88cefad27a1737c76e09d99c9fb43e173506081 (patch) | |
tree | 2d8167d03579c46e226471747eb4407bd00ed6fa /src/devices/bus/nes/pt554.h | |
parent | e92ac9e0fa8e99869894bea00589bbb526be30aa (diff) |
Move all devices into separate part of src tree (nw)
Diffstat (limited to 'src/devices/bus/nes/pt554.h')
-rw-r--r-- | src/devices/bus/nes/pt554.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/devices/bus/nes/pt554.h b/src/devices/bus/nes/pt554.h new file mode 100644 index 00000000000..0d0bd7b60f4 --- /dev/null +++ b/src/devices/bus/nes/pt554.h @@ -0,0 +1,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 |