summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/bus/neogeo/mslugx_cart.h
blob: f6b0d9d75cf175eb1e819d0b5fcc3f3bcfe04fdb (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
32
33
34
35
36
37
38
39
#ifndef __NEOGEO_MSLUGX_CART_H
#define __NEOGEO_MSLUGX_CART_H

#include "neogeo_slot.h"
#include "banked_cart.h"
#include "mslugx_prot.h"

// ======================> neogeo_mslugx_cart

class neogeo_mslugx_cart : public device_t,
						public device_neogeo_cart_interface
{
public:
	// construction/destruction
	neogeo_mslugx_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_mslugx_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<mslugx_prot_device> m_mslugx_prot;

};



// device type definition
extern const device_type NEOGEO_MSLUGX_CART;


#endif