mirror of
https://github.com/holub/mame
synced 2025-05-21 05:08:54 +03:00

(MESS) vic20: Added floating bus read support to VIC and cartridge interface. (MESS) vic10: Added floating bus read support to VIC-II and cartridge interface. (MESS) c64: Added floating bus read support to cartridge interface. [Curt Coder] (MESS) plus4: Added floating bus read support to TED and cartridge interface. Implemented some Diag264 test cartridge loopback connectors. [Curt Coder] (MESS) c16: Added PAL/NTSC variants. (nw) (MESS) v364: Fixed speech ROM mapping. (nw) (MESS) compis: Separated keyboard to its own file. (nw) (MESS) huebler: Cleanup. (nw)
50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
/**********************************************************************
|
|
|
|
Commodore VIC-20 Standard 8K/16K ROM Cartridge emulation
|
|
|
|
Copyright MESS Team.
|
|
Visit http://mamedev.org for licensing and usage restrictions.
|
|
|
|
**********************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#ifndef __VIC20_STD__
|
|
#define __VIC20_STD__
|
|
|
|
|
|
#include "emu.h"
|
|
#include "machine/vic20exp.h"
|
|
|
|
|
|
|
|
//**************************************************************************
|
|
// TYPE DEFINITIONS
|
|
//**************************************************************************
|
|
|
|
// ======================> vic20_standard_cartridge_device
|
|
|
|
class vic20_standard_cartridge_device : public device_t,
|
|
public device_vic20_expansion_card_interface
|
|
{
|
|
public:
|
|
// construction/destruction
|
|
vic20_standard_cartridge_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
|
|
|
|
protected:
|
|
// device-level overrides
|
|
virtual void device_start();
|
|
virtual void device_config_complete() { m_shortname = "vic20_standard"; }
|
|
|
|
// device_vic20_expansion_card_interface overrides
|
|
virtual UINT8 vic20_cd_r(address_space &space, offs_t offset, UINT8 data, int ram1, int ram2, int ram3, int blk1, int blk2, int blk3, int blk5, int io2, int io3);
|
|
};
|
|
|
|
|
|
// device type definition
|
|
extern const device_type VIC20_STD;
|
|
|
|
|
|
|
|
#endif
|