From f88cefad27a1737c76e09d99c9fb43e173506081 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sun, 13 Sep 2015 08:41:44 +0200 Subject: Move all devices into separate part of src tree (nw) --- src/devices/bus/nes/pt554.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/devices/bus/nes/pt554.h (limited to 'src/devices/bus/nes/pt554.h') 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 m_samples; +}; + + + + +// device type definition +extern const device_type NES_BANDAI_PT554; + +#endif -- cgit v1.2.3-70-g09d2