diff options
author | 2013-10-22 15:44:27 +0000 | |
---|---|---|
committer | 2013-10-22 15:44:27 +0000 | |
commit | 0b91c21b366be4d0c1bcabdbe74e6b9d82a62271 (patch) | |
tree | 1804ed0b9de916825d5fc7e1387d33aac256f4c0 /src/emu/bus/vic10/std.h | |
parent | 47c548e760b6c4447f7b15e7d403060d0051b994 (diff) |
(MESS) Moved a bunch of buses under emu/bus. (nw)
Diffstat (limited to 'src/emu/bus/vic10/std.h')
-rw-r--r-- | src/emu/bus/vic10/std.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/src/emu/bus/vic10/std.h b/src/emu/bus/vic10/std.h new file mode 100644 index 00000000000..ca5fc55f593 --- /dev/null +++ b/src/emu/bus/vic10/std.h @@ -0,0 +1,50 @@ +// 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 "exp.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 |