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
49
50
51
52
53
54
55
56
57
58
59
|
#ifndef _TC0280GRD_H_
#define _TC0280GRD_H_
struct tc0280grd_interface
{
int m_gfxnum;
};
class tc0280grd_device : public device_t,
public tc0280grd_interface
{
public:
tc0280grd_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
~tc0280grd_device() {}
DECLARE_READ16_MEMBER( tc0280grd_word_r );
DECLARE_WRITE16_MEMBER( tc0280grd_word_w );
DECLARE_WRITE16_MEMBER( tc0280grd_ctrl_word_w );
void tc0280grd_tilemap_update(int base_color);
void tc0280grd_zoom_draw(bitmap_ind16 &bitmap, const rectangle &cliprect, int xoffset, int yoffset, UINT32 priority);
DECLARE_READ16_MEMBER( tc0430grw_word_r );
DECLARE_WRITE16_MEMBER( tc0430grw_word_w );
DECLARE_WRITE16_MEMBER( tc0430grw_ctrl_word_w );
void tc0430grw_tilemap_update(int base_color);
void tc0430grw_zoom_draw(bitmap_ind16 &bitmap, const rectangle &cliprect, int xoffset, int yoffset, UINT32 priority);
protected:
// device-level overrides
virtual void device_config_complete();
virtual void device_start();
virtual void device_reset();
private:
// internal state
UINT16 * m_ram;
tilemap_t *m_tilemap;
UINT16 m_ctrl[8];
int m_base_color;
TILE_GET_INFO_MEMBER(tc0280grd_get_tile_info);
void zoom_draw( bitmap_ind16 &bitmap, const rectangle &cliprect, int xoffset, int yoffset, UINT32 priority, int xmultiply );
};
extern const device_type TC0280GRD;
#define TC0430GRW TC0280GRD
#define MCFG_TC0280GRD_ADD(_tag, _interface) \
MCFG_DEVICE_ADD(_tag, TC0280GRD, 0) \
MCFG_DEVICE_CONFIG(_interface)
#define MCFG_TC0430GRW_ADD(_tag, _interface) \
MCFG_DEVICE_ADD(_tag, TC0430GRW, 0) \
MCFG_DEVICE_CONFIG(_interface)
#endif
|