Previous 199869 Revisions Next

r20060 Friday 4th January, 2013 at 15:19:20 UTC by Curt Coder
(MESS) c64: Cartridge WIP. (nw)
[src/mess/machine]c64_prophet64.c c64_prophet64.h c64_sfx_sound_expander.c c64_sfx_sound_expander.h

trunk/src/mess/machine/c64_prophet64.c
r20059r20060
11/**********************************************************************
22
3    Prophet-64 emulation
3    PROPHET64 cartridge emulation
44
55    Copyright MESS Team.
66    Visit http://mamedev.org for licensing and usage restrictions.
r20059r20060
2828//-------------------------------------------------
2929
3030c64_prophet64_cartridge_device::c64_prophet64_cartridge_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
31   device_t(mconfig, C64_PROPHET64, "C64 Prophet-64 cartridge", tag, owner, clock),
32   device_c64_expansion_card_interface(mconfig, *this)
31   device_t(mconfig, C64_PROPHET64, "PROPHET64", tag, owner, clock),
32   device_c64_expansion_card_interface(mconfig, *this),
33   m_bank(0)
3334{
3435}
3536
r20059r20060
5152
5253void c64_prophet64_cartridge_device::device_reset()
5354{
55   m_bank = 0;
5456   m_exrom = 0;
5557}
5658
trunk/src/mess/machine/c64_prophet64.h
r20059r20060
11/**********************************************************************
22
3    Prophet-64 emulation
3    PROPHET64 cartridge emulation
44
55    Copyright MESS Team.
66    Visit http://mamedev.org for licensing and usage restrictions.
r20059r20060
1212#ifndef __PROPHET64__
1313#define __PROPHET64__
1414
15
1615#include "emu.h"
1716#include "machine/c64exp.h"
1817
r20059r20060
5049extern const device_type C64_PROPHET64;
5150
5251
52
5353#endif
trunk/src/mess/machine/c64_sfx_sound_expander.c
r20059r20060
99
1010#include "c64_sfx_sound_expander.h"
1111
12
13
14//**************************************************************************
15//  MACROS / CONSTANTS
16//**************************************************************************
17
1218#define YM3526_TAG   "ic3"
1319
20
21
1422//**************************************************************************
1523//  DEVICE DEFINITIONS
1624//**************************************************************************
trunk/src/mess/machine/c64_sfx_sound_expander.h
r20059r20060
1212#ifndef __SFX_SOUND_EXPANDER__
1313#define __SFX_SOUND_EXPANDER__
1414
15
1615#include "emu.h"
1716#include "machine/c64exp.h"
1817#include "machine/cbmipt.h"
r20059r20060
6766extern const device_type C64_SFX_SOUND_EXPANDER;
6867
6968
69
7070#endif

Previous 199869 Revisions Next


© 1997-2024 The MAME Team