blob: b92ad8d0678b81d56f2458a93c7026200c4bd3a4 (
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"
DEFINE_DEVICE_TYPE(M65SC02, m65sc02_device, "m65sc02", "Rockwell M65SC02")
m65sc02_device::m65sc02_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
r65c02_device(mconfig, M65SC02, tag, owner, clock)
{
}
|