blob: 61e9878dd75372bce3428e6d76ac8d45e4ab8943 (
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
/*
* s11a.h
*
* Created on: 1/01/2013
*/
#ifndef MAME_INCLUDES_S11A_H
#define MAME_INCLUDES_S11A_H
#include "includes/s11.h"
class s11a_state : public s11_state
{
public:
s11a_state(const machine_config &mconfig, device_type type, const char *tag)
: s11_state(mconfig, type, tag)
{ }
void s11a_base(machine_config &config);
void s11a(machine_config &config);
void s11a_obg(machine_config &config);
void init_s11a();
void dig0_w(uint8_t data);
};
#endif // MAME_INCLUDES_S11A_H
|