blob: b5b86dde7d3d3fdafa3ed88f83b2ef7e934ace19 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
/***************************************************************************
m7501.c
6510 derivative, essentially identical. Also known as the 8501.
***************************************************************************/
#include "emu.h"
#include "m7501.h"
DEFINE_DEVICE_TYPE(M7501, m7501_device, "m7501", "M7501")
m7501_device::m7501_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) :
m6510_device(mconfig, M7501, tag, owner, clock)
{
}
|