Previous 199869 Revisions Next

r17810 Wednesday 12th September, 2012 at 01:26:10 UTC by Angelo Salese
Wrong file mod
[src/mame/etc]template_device.h

trunk/src/mame/etc/template_device.h
r17809r17810
66
77#pragma once
88
9#ifndef __seibu_copDEV_H__
10#define __seibu_copDEV_H__
9#ifndef __xxxDEV_H__
10#define __xxxDEV_H__
1111
1212
1313
r17809r17810
1515//  INTERFACE CONFIGURATION MACROS
1616//**************************************************************************
1717
18#define MCFG_SEIBU_COP_ADD(_tag,_freq) \
19   MCFG_DEVICE_ADD(_tag, SEIBU_COP, _freq) \
18#define MCFG_XXX_ADD(_tag,_freq) \
19   MCFG_DEVICE_ADD(_tag, XXX, _freq) \
2020
2121
2222//**************************************************************************
2323//  TYPE DEFINITIONS
2424//**************************************************************************
2525
26// ======================> seibu_cop_device
26// ======================> xxx_device
2727
28class seibu_cop_device :   public device_t
28class xxx_device : public device_t
2929{
3030public:
3131   // construction/destruction
32   seibu_cop_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
32   xxx_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
3333
3434   // I/O operations
3535   DECLARE_WRITE8_MEMBER( write );
r17809r17810
4444
4545
4646// device type definition
47extern const device_type SEIBU_COP;
47extern const device_type XXX;
4848
4949
5050

Previous 199869 Revisions Next


© 1997-2024 The MAME Team