summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/neogeo/fatfury2_cart.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/neogeo/fatfury2_cart.h')
-rw-r--r--src/devices/bus/neogeo/fatfury2_cart.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/devices/bus/neogeo/fatfury2_cart.h b/src/devices/bus/neogeo/fatfury2_cart.h
new file mode 100644
index 00000000000..1356d130bf9
--- /dev/null
+++ b/src/devices/bus/neogeo/fatfury2_cart.h
@@ -0,0 +1,41 @@
+// license:BSD-3-Clause
+// copyright-holders:S. Smith,David Haywood
+#ifndef __NEOGEO_FATFURY2_CART_H
+#define __NEOGEO_FATFURY2_CART_H
+
+#include "neogeo_slot.h"
+#include "banked_cart.h"
+#include "fatfury2_prot.h"
+
+// ======================> neogeo_fatfury2_cart
+
+class neogeo_fatfury2_cart : public device_t,
+ public device_neogeo_cart_interface
+{
+public:
+ // construction/destruction
+ neogeo_fatfury2_cart(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_fatfury2_cart(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;
+ required_device<fatfury2_prot_device> m_fatfury2_prot;
+
+};
+
+
+
+// device type definition
+extern const device_type NEOGEO_FATFURY2_CART;
+
+
+#endif