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/neogeo/rom.h | |
parent | e92ac9e0fa8e99869894bea00589bbb526be30aa (diff) |
Move all devices into separate part of src tree (nw)
Diffstat (limited to 'src/devices/bus/neogeo/rom.h')
-rw-r--r-- | src/devices/bus/neogeo/rom.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/devices/bus/neogeo/rom.h b/src/devices/bus/neogeo/rom.h new file mode 100644 index 00000000000..9394a7ec5bd --- /dev/null +++ b/src/devices/bus/neogeo/rom.h @@ -0,0 +1,38 @@ +// license:BSD-3-Clause +// copyright-holders:S. Smith,David Haywood +#ifndef __NEOGEO_ROM_H +#define __NEOGEO_ROM_H + +#include "neogeo_slot.h" +#include "banked_cart.h" + +// ======================> neogeo_rom_device + +class neogeo_rom_device : public device_t, + public device_neogeo_cart_interface +{ +public: + // construction/destruction + neogeo_rom_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT16 clock, const char *shortname, const char *source); + neogeo_rom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT16 clock); + + // device-level overrides + virtual void device_start(); + virtual void device_reset(); + virtual machine_config_constructor device_mconfig_additions() const; + + // reading and writing + virtual DECLARE_READ16_MEMBER(read_rom); + + virtual void activate_cart(ACTIVATE_CART_PARAMS); + + required_device<neogeo_banked_cart_device> m_banked_cart; +}; + + + +// device type definition +extern const device_type NEOGEO_ROM; + + +#endif |