summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/s11c.h
blob: 5052ebbfcef377885238d565f11f5de99ccac616 (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
// license:BSD-3-Clause
// copyright-holders:Miodrag Milanovic
/*
 * s11c.h
 *
 *  Created on: 1/01/2013
 */

#ifndef MAME_INCLUDES_S11C_H
#define MAME_INCLUDES_S11C_H

#include "includes/s11b.h"

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

	DECLARE_MACHINE_RESET(s11c);
	void init_s11c();

	void s11c(machine_config &config);
	void s11c_main_map(address_map &map);
	void s11c_audio_map(address_map &map);
	void s11c_bg_map(address_map &map);
protected:

private:


};


#endif // MAME_INCLUDES_S11C_H