(MESS) c64: Cartridge WIP. (nw)

This commit is contained in:
Curt Coder 2013-01-04 15:19:20 +00:00
parent 79f94206f6
commit 3268e26afc
4 changed files with 16 additions and 6 deletions

View File

@ -1,6 +1,6 @@
/**********************************************************************
Prophet-64 emulation
PROPHET64 cartridge emulation
Copyright MESS Team.
Visit http://mamedev.org for licensing and usage restrictions.
@ -28,8 +28,9 @@ const device_type C64_PROPHET64 = &device_creator<c64_prophet64_cartridge_device
//-------------------------------------------------
c64_prophet64_cartridge_device::c64_prophet64_cartridge_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
device_t(mconfig, C64_PROPHET64, "C64 Prophet-64 cartridge", tag, owner, clock),
device_c64_expansion_card_interface(mconfig, *this)
device_t(mconfig, C64_PROPHET64, "PROPHET64", tag, owner, clock),
device_c64_expansion_card_interface(mconfig, *this),
m_bank(0)
{
}
@ -51,6 +52,7 @@ void c64_prophet64_cartridge_device::device_start()
void c64_prophet64_cartridge_device::device_reset()
{
m_bank = 0;
m_exrom = 0;
}

View File

@ -1,6 +1,6 @@
/**********************************************************************
Prophet-64 emulation
PROPHET64 cartridge emulation
Copyright MESS Team.
Visit http://mamedev.org for licensing and usage restrictions.
@ -12,7 +12,6 @@
#ifndef __PROPHET64__
#define __PROPHET64__
#include "emu.h"
#include "machine/c64exp.h"
@ -50,4 +49,5 @@ private:
extern const device_type C64_PROPHET64;
#endif

View File

@ -9,8 +9,16 @@
#include "c64_sfx_sound_expander.h"
//**************************************************************************
// MACROS / CONSTANTS
//**************************************************************************
#define YM3526_TAG "ic3"
//**************************************************************************
// DEVICE DEFINITIONS
//**************************************************************************

View File

@ -12,7 +12,6 @@
#ifndef __SFX_SOUND_EXPANDER__
#define __SFX_SOUND_EXPANDER__
#include "emu.h"
#include "machine/c64exp.h"
#include "machine/cbmipt.h"
@ -67,4 +66,5 @@ private:
extern const device_type C64_SFX_SOUND_EXPANDER;
#endif