summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2012-09-12 01:24:33 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2012-09-12 01:24:33 +0000
commitd08ebf6013e0cd5a74da8224d14eb7ca0f9e9606 (patch)
tree93f08f84466e7a97f3be290403a5c854964b38a9 /src/mame
parent088753e7c55b3c26b72513be9b9d3534b3e40544 (diff)
Place-holder
Diffstat (limited to 'src/mame')
-rw-r--r--src/mame/etc/template_device.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/etc/template_device.h b/src/mame/etc/template_device.h
index b7eb0632cee..5718f7832f9 100644
--- a/src/mame/etc/template_device.h
+++ b/src/mame/etc/template_device.h
@@ -6,8 +6,8 @@ Template for skeleton device
#pragma once
-#ifndef __xxxDEV_H__
-#define __xxxDEV_H__
+#ifndef __seibu_copDEV_H__
+#define __seibu_copDEV_H__
@@ -15,21 +15,21 @@ Template for skeleton device
// INTERFACE CONFIGURATION MACROS
//**************************************************************************
-#define MCFG_XXX_ADD(_tag,_freq) \
- MCFG_DEVICE_ADD(_tag, xxx, _freq) \
+#define MCFG_SEIBU_COP_ADD(_tag,_freq) \
+ MCFG_DEVICE_ADD(_tag, SEIBU_COP, _freq) \
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
-// ======================> xxx_device
+// ======================> seibu_cop_device
-class xxx_device : public device_t
+class seibu_cop_device : public device_t
{
public:
// construction/destruction
- xxx_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ seibu_cop_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// I/O operations
DECLARE_WRITE8_MEMBER( write );
@@ -44,7 +44,7 @@ protected:
// device type definition
-extern const device_type XXX;
+extern const device_type SEIBU_COP;