diff options
author | 2013-10-22 15:44:27 +0000 | |
---|---|---|
committer | 2013-10-22 15:44:27 +0000 | |
commit | 0b91c21b366be4d0c1bcabdbe74e6b9d82a62271 (patch) | |
tree | 1804ed0b9de916825d5fc7e1387d33aac256f4c0 /src/mess/machine/vic10std.h | |
parent | 47c548e760b6c4447f7b15e7d403060d0051b994 (diff) |
(MESS) Moved a bunch of buses under emu/bus. (nw)
Diffstat (limited to 'src/mess/machine/vic10std.h')
-rw-r--r-- | src/mess/machine/vic10std.h | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/src/mess/machine/vic10std.h b/src/mess/machine/vic10std.h deleted file mode 100644 index 2cbb9ed0740..00000000000 --- a/src/mess/machine/vic10std.h +++ /dev/null @@ -1,51 +0,0 @@ -// license:BSD-3-Clause -// copyright-holders:Curt Coder -/********************************************************************** - - Commodore VIC-10 Standard 8K/16K ROM Cartridge emulation - - Copyright MESS Team. - Visit http://mamedev.org for licensing and usage restrictions. - -**********************************************************************/ - -#pragma once - -#ifndef __VIC10_STD__ -#define __VIC10_STD__ - - -#include "emu.h" -#include "machine/vic10exp.h" - - - -//************************************************************************** -// TYPE DEFINITIONS -//************************************************************************** - -// ======================> vic10_standard_cartridge_device - -class vic10_standard_cartridge_device : public device_t, - public device_vic10_expansion_card_interface -{ -public: - // construction/destruction - vic10_standard_cartridge_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); - -protected: - // device-level overrides - virtual void device_start(); - - // device_vic10_expansion_card_interface overrides - virtual UINT8 vic10_cd_r(address_space &space, offs_t offset, UINT8 data, int lorom, int uprom, int exram); - virtual void vic10_cd_w(address_space &space, offs_t offset, UINT8 data, int lorom, int uprom, int exram); -}; - - -// device type definition -extern const device_type VIC10_STD; - - - -#endif |