summaryrefslogtreecommitdiffstats
path: root/src/mame/old/neogeo_intf.cpp
blob: 30877b11be8443758973de654ca663bc14ac4e25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// license:BSD-3-Clause
// copyright-holders:S. Smith,David Haywood

#include "emu.h"
#include "neogeo_intf.h"

//-------------------------------------------------
//  device_neogeo_cart_interface - constructor
//-------------------------------------------------

device_neogeo_cart_interface::device_neogeo_cart_interface(const machine_config &mconfig, device_t &device)
	: device_slot_card_interface(mconfig, device),
		m_sprite_gfx_address_mask(0)
/*
m_rom(nullptr),
m_fixed(nullptr),
m_sprites(nullptr),
m_sprites_optimized(nullptr),
m_audio(nullptr),
m_ym(nullptr),
m_ymdelta(nullptr),
m_audiocrypt(nullptr)
*/
{
}


//-------------------------------------------------
//  ~device_neogeo_cart_interface - destructor
//-------------------------------------------------

device_neogeo_cart_interface::~device_neogeo_cart_interface()
{
}