summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/etc/template_device.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/etc/template_device.h')
-rw-r--r--src/mame/etc/template_device.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/mame/etc/template_device.h b/src/mame/etc/template_device.h
deleted file mode 100644
index c98aab13888..00000000000
--- a/src/mame/etc/template_device.h
+++ /dev/null
@@ -1,57 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:<author_name>
-/***************************************************************************
-
-Template for skeleton device
-
-***************************************************************************/
-
-#ifndef MAME_MACHINE_XXX_H
-#define MAME_MACHINE_XXX_H
-
-#pragma once
-
-
-
-//**************************************************************************
-// INTERFACE CONFIGURATION MACROS
-//**************************************************************************
-
-
-
-//**************************************************************************
-// TYPE DEFINITIONS
-//**************************************************************************
-
-// ======================> xxx_device
-
-class xxx_device : public device_t
-{
-public:
- // construction/destruction
- xxx_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
-
- // I/O operations
- void write(address_space &space, offs_t offset, uint8_t data, uint8_t mem_mask = ~0);
- uint8_t read(address_space &space, offs_t offset, uint8_t mem_mask = ~0);
-
-protected:
- // device-level overrides
- //virtual void device_validity_check(validity_checker &valid) const override;
- virtual void device_add_mconfig(machine_config &config) override;
- virtual void device_start() override;
- virtual void device_reset() override;
-};
-
-
-// device type definition
-DECLARE_DEVICE_TYPE(XXX, xxx_device)
-
-
-
-//**************************************************************************
-// GLOBAL VARIABLES
-//**************************************************************************
-
-
-#endif // MAME_MACHINE_XXX_H