blob: 6d7709c0b7c566f4da0cb9bae456dbb687d88570 (
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
|
// 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)
{ }
void s11c(machine_config &config);
void init_s11c();
protected:
virtual void machine_reset() override;
};
#endif // MAME_INCLUDES_S11C_H
|