summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/upd7810/upd7811.h
blob: 2d98f64da5f62429c4102e02130d1043af38b94d (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
// license:BSD-3-Clause
// copyright-holders:Juergen Buchmueller

#ifndef MAME_CPU_UPD7810_UPD7811_H
#define MAME_CPU_UPD7810_UPD7811_H

#pragma once

#include "upd7810.h"

DECLARE_DEVICE_TYPE(UPD7811,  upd7811_device)
DECLARE_DEVICE_TYPE(UPD78C11, upd78c11_device)

class upd7811_device : public upd7810_device
{
public:
	// construction/destruction
	upd7811_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};

class upd78c11_device : public upd78c10_device
{
public:
	// construction/destruction
	upd78c11_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};

#endif // MAME_CPU_UPD7810_UPD7811_H