blob: 9394a7ec5bdf212013bf26d86b009780cf3de9ce (
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
35
36
37
38
|
// license:BSD-3-Clause
// copyright-holders:S. Smith,David Haywood
#ifndef __NEOGEO_ROM_H
#define __NEOGEO_ROM_H
#include "neogeo_slot.h"
#include "banked_cart.h"
// ======================> neogeo_rom_device
class neogeo_rom_device : public device_t,
public device_neogeo_cart_interface
{
public:
// construction/destruction
neogeo_rom_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT16 clock, const char *shortname, const char *source);
neogeo_rom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT16 clock);
// device-level overrides
virtual void device_start();
virtual void device_reset();
virtual machine_config_constructor device_mconfig_additions() const;
// reading and writing
virtual DECLARE_READ16_MEMBER(read_rom);
virtual void activate_cart(ACTIVATE_CART_PARAMS);
required_device<neogeo_banked_cart_device> m_banked_cart;
};
// device type definition
extern const device_type NEOGEO_ROM;
#endif
|