mirror of
https://github.com/holub/mame
synced 2025-06-03 19:36:26 +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)
52 lines
1.4 KiB
C++
52 lines
1.4 KiB
C++
/**********************************************************************
|
|
|
|
Kingsoft cartridge emulation
|
|
|
|
Copyright MESS Team.
|
|
Visit http://mamedev.org for licensing and usage restrictions.
|
|
|
|
**********************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#ifndef __KINGSOFT__
|
|
#define __KINGSOFT__
|
|
|
|
|
|
#include "emu.h"
|
|
#include "machine/c64exp.h"
|
|
|
|
|
|
|
|
//**************************************************************************
|
|
// TYPE DEFINITIONS
|
|
//**************************************************************************
|
|
|
|
// ======================> c64_kingsoft_cartridge_device
|
|
|
|
class c64_kingsoft_cartridge_device : public device_t,
|
|
public device_c64_expansion_card_interface
|
|
{
|
|
public:
|
|
// construction/destruction
|
|
c64_kingsoft_cartridge_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
|
|
|
|
protected:
|
|
// device-level overrides
|
|
virtual void device_config_complete() { m_shortname = "c64_kingsoft"; }
|
|
virtual void device_start();
|
|
virtual void device_reset();
|
|
|
|
// device_c64_expansion_card_interface overrides
|
|
virtual UINT8 c64_cd_r(address_space &space, offs_t offset, UINT8 data, int ba, int roml, int romh, int io1, int io2);
|
|
virtual void c64_cd_w(address_space &space, offs_t offset, UINT8 data, int ba, int roml, int romh, int io1, int io2);
|
|
virtual int c64_game_r(offs_t offset, int ba, int rw, int hiram);
|
|
};
|
|
|
|
|
|
// device type definition
|
|
extern const device_type C64_KINGSOFT;
|
|
|
|
|
|
#endif
|