summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/bus/vip/vp700.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-09-13 08:41:44 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2015-09-13 08:41:44 +0200
commitf88cefad27a1737c76e09d99c9fb43e173506081 (patch)
tree2d8167d03579c46e226471747eb4407bd00ed6fa /src/emu/bus/vip/vp700.h
parente92ac9e0fa8e99869894bea00589bbb526be30aa (diff)
Move all devices into separate part of src tree (nw)
Diffstat (limited to 'src/emu/bus/vip/vp700.h')
-rw-r--r--src/emu/bus/vip/vp700.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/src/emu/bus/vip/vp700.h b/src/emu/bus/vip/vp700.h
deleted file mode 100644
index 8f521199d76..00000000000
--- a/src/emu/bus/vip/vp700.h
+++ /dev/null
@@ -1,52 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Curt Coder
-/**********************************************************************
-
- RCA VIP Tiny BASIC VP-700 emulation
-
-**********************************************************************/
-
-#pragma once
-
-#ifndef __VP700__
-#define __VP700__
-
-#include "emu.h"
-#include "exp.h"
-#include "sound/cdp1863.h"
-
-
-
-//**************************************************************************
-// TYPE DEFINITIONS
-//**************************************************************************
-
-// ======================> vp700_device
-
-class vp700_device : public device_t,
- public device_vip_expansion_card_interface
-{
-public:
- // construction/destruction
- vp700_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
-
- // optional information overrides
- virtual const rom_entry *device_rom_region() const;
-
-protected:
- // device-level overrides
- virtual void device_start();
-
- // device_vip_expansion_card_interface overrides
- virtual UINT8 vip_program_r(address_space &space, offs_t offset, int cs, int cdef, int *minh);
-
-private:
- required_memory_region m_rom;
-};
-
-
-// device type definition
-extern const device_type VP700;
-
-
-#endif