blob: f61bc63cf7f20acad2bd77c6a57b1cc68eafd506 (
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
/***************************************************************************
m65sc02.c
Rockwell-class 65c02 with internal static registers, making clock stoppable?
***************************************************************************/
#include "emu.h"
#include "m65sc02.h"
const device_type M65SC02 = &device_creator<m65sc02_device>;
m65sc02_device::m65sc02_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
r65c02_device(mconfig, M65SC02, "M65SC02", tag, owner, clock, "m65sc02", __FILE__)
{
}
|