blob: e7c8874aa619756e89dabc2f3a58a2c50d11118b (
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
49
50
51
52
|
/*************************************************************************
Momoko 120%
*************************************************************************/
class momoko_state : public driver_device
{
public:
momoko_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag) ,
m_spriteram(*this, "spriteram"),
m_videoram(*this, "videoram"),
m_bg_scrolly(*this, "bg_scrolly"),
m_bg_scrollx(*this, "bg_scrollx"){ }
/* memory pointers */
required_shared_ptr<UINT8> m_spriteram;
required_shared_ptr<UINT8> m_videoram;
required_shared_ptr<UINT8> m_bg_scrolly;
required_shared_ptr<UINT8> m_bg_scrollx;
// UINT8 * paletteram; // currently this uses generic palette handling
/* video-related */
UINT8 m_fg_scrollx;
UINT8 m_fg_scrolly;
UINT8 m_fg_select;
UINT8 m_text_scrolly;
UINT8 m_text_mode;
UINT8 m_bg_select;
UINT8 m_bg_priority;
UINT8 m_bg_mask;
UINT8 m_fg_mask;
UINT8 m_flipscreen;
DECLARE_WRITE8_MEMBER(momoko_bg_read_bank_w);
DECLARE_WRITE8_MEMBER(momoko_fg_scrollx_w);
DECLARE_WRITE8_MEMBER(momoko_fg_scrolly_w);
DECLARE_WRITE8_MEMBER(momoko_fg_select_w);
DECLARE_WRITE8_MEMBER(momoko_text_scrolly_w);
DECLARE_WRITE8_MEMBER(momoko_text_mode_w);
DECLARE_WRITE8_MEMBER(momoko_bg_scrollx_w);
DECLARE_WRITE8_MEMBER(momoko_bg_scrolly_w);
DECLARE_WRITE8_MEMBER(momoko_bg_select_w);
DECLARE_WRITE8_MEMBER(momoko_bg_priority_w);
DECLARE_WRITE8_MEMBER(momoko_flipscreen_w);
};
/*----------- defined in video/momoko.c -----------*/
SCREEN_UPDATE_IND16( momoko );
|