1 // license:BSD-3-Clause
2 // copyright-holders:Miodrag Milanovic
3 /*
4  * s11c.h
5  *
6  *  Created on: 1/01/2013
7  */
8 
9 #ifndef MAME_INCLUDES_S11C_H
10 #define MAME_INCLUDES_S11C_H
11 
12 #include "includes/s11b.h"
13 
14 class s11c_state : public s11b_state
15 {
16 public:
s11c_state(const machine_config & mconfig,device_type type,const char * tag)17 	s11c_state(const machine_config &mconfig, device_type type, const char *tag)
18 		: s11b_state(mconfig, type, tag)
19 	{ }
20 
21 	void s11c(machine_config &config);
22 
23 	void init_s11c();
24 
25 protected:
26 	virtual void machine_reset() override;
27 };
28 
29 
30 #endif // MAME_INCLUDES_S11C_H
31