summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/sms_bootleg.h
blob: 4aead1b873016e267bcc82f38ad588953837e7ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "sms.h"

class smsbootleg_state : public sms_state
{
	public:
		smsbootleg_state(const machine_config &mconfig, device_type type, const char *tag)
			: sms_state(mconfig, type, tag)
			{}

	void init_sms_supergame();
	DECLARE_WRITE8_MEMBER(port08_w);
	DECLARE_WRITE8_MEMBER(port18_w);

	void sms_supergame(machine_config &config);
	void sms_supergame_io(address_map &map);
	void sms_supergame_map(address_map &map);
};