summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/namcomcu.h
blob: 31ae1e5dc2884a62ccd2e869c04b7ae1bca8216f (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// license:BSD-3-Clause
// copyright-holders:Alex W. Jackson
#pragma once

#ifndef __NAMCOMCU_H__
#define __NAMCOMCU_H__

#include "cpu/m37710/m37710.h"


class namco_c69_device : public m37702m2_device
{
public:
	namco_c69_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
	virtual const tiny_rom_entry *device_rom_region() const override;
};


class namco_c70_device : public m37702m2_device
{
public:
	namco_c70_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
	virtual const tiny_rom_entry *device_rom_region() const override;
};


class namco_c74_device : public m37702m2_device
{
public:
	namco_c74_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
	virtual const tiny_rom_entry *device_rom_region() const override;
};


class namco_c75_device : public m37702m2_device
{
public:
	namco_c75_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
	virtual const tiny_rom_entry *device_rom_region() const override;
};


class namco_c76_device : public m37702m2_device
{
public:
	namco_c76_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
	virtual const tiny_rom_entry *device_rom_region() const override;
};


extern const device_type NAMCO_C69;
extern const device_type NAMCO_C70;
extern const device_type NAMCO_C74;
extern const device_type NAMCO_C75;
extern const device_type NAMCO_C76;


#endif