summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/msx_switched.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/msx_switched.h')
-rw-r--r--src/mess/machine/msx_switched.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/mess/machine/msx_switched.h b/src/mess/machine/msx_switched.h
deleted file mode 100644
index 681ffaaa680..00000000000
--- a/src/mess/machine/msx_switched.h
+++ /dev/null
@@ -1,21 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Wilbert Pol
-#ifndef __MSX_SWITCHED_H
-#define __MSX_SWITCHED_H
-
-
-class msx_switched_device : public device_t
-{
-public:
- msx_switched_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
-
- virtual UINT8 get_id() = 0;
-
- virtual DECLARE_READ8_MEMBER(io_read) = 0;
- virtual DECLARE_WRITE8_MEMBER(io_write) = 0;
-
-protected:
- virtual void device_start();
-};
-
-#endif