blob: f7e77146a703543dc44a9731b72b0f76465f3e54 (
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
45
46
47
48
|
#pragma once
#ifndef __NUBUS_VIKBW_H__
#define __NUBUS_VIKBW_H__
#include "emu.h"
#include "machine/nubus.h"
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> nubus_vikbw_device
class nubus_vikbw_device :
public device_t,
public device_nubus_card_interface
{
public:
// construction/destruction
nubus_vikbw_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
nubus_vikbw_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock);
// optional information overrides
virtual machine_config_constructor device_mconfig_additions() const;
virtual const rom_entry *device_rom_region() const;
protected:
// device-level overrides
virtual void device_start();
virtual void device_reset();
DECLARE_READ32_MEMBER(viking_ack_r);
DECLARE_WRITE32_MEMBER(viking_ack_w);
DECLARE_READ32_MEMBER(viking_enable_r);
DECLARE_WRITE32_MEMBER(viking_disable_w);
public:
UINT8 *m_vram;
UINT32 m_vbl_disable, m_palette[2];
};
// device type definition
extern const device_type NUBUS_VIKBW;
#endif /* __NUBUS_VIKBW_H__ */
|