blob: 5aeb5b6c782fac2c5847366a55055df37b057ef4 (
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
39
40
41
42
43
44
|
// license:BSD-3-Clause
// copyright-holders:Sandro Ronco
#pragma once
#ifndef __DMV_K233_H__
#define __DMV_K233_H__
#include "emu.h"
#include "dmvbus.h"
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================>
class dmv_k233_device :
public device_t,
public device_dmvslot_interface
{
public:
// construction/destruction
dmv_k233_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
protected:
// device-level overrides
virtual void device_start();
virtual void device_reset();
// dmvcart_interface overrides
virtual void io_write(address_space &space, int ifsel, offs_t offset, UINT8 data);
virtual bool read(offs_t offset, UINT8 &data);
virtual bool write(offs_t offset, UINT8 data);
private:
bool m_enabled;
UINT8 * m_ram;
};
// device type definition
extern const device_type DMV_K233;
#endif /* __DMV_K233_H__ */
|