Previous 199869 Revisions Next

r31146 Monday 30th June, 2014 at 21:49:40 UTC by Wilbert Pol
Removed DECLARE_LEGACY_CPU_DEVICE  (nw)
[src/emu]devcpu.h

trunk/src/emu/devcpu.h
r31145r31146
176176//  MACROS
177177//**************************************************************************
178178
179// macro for declaring the configuration and device classes of a legacy CPU device
180#define DECLARE_LEGACY_CPU_DEVICE(name, basename)                                           \
181                                                                     \
182CPU_GET_INFO( basename );                                                                   \
183                                                                     \
184class basename##_device : public legacy_cpu_device                                          \
185{                                                                                           \
186public:                                                                                     \
187   basename##_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, UINT32 clock); \
188};                                                                                          \
189                                                                     \
190extern const device_type name;
191
192179// macro for defining the implementation needed for configuration and device classes
193180#define DEFINE_LEGACY_CPU_DEVICE(name, basename)                                            \
194181                                                                     \

Previous 199869 Revisions Next


© 1997-2024 The MAME Team