~ubuntu-branches/debian/sid/mame/sid

« back to all changes in this revision

Viewing changes to src/mame/includes/arabian.h

  • Committer: Package Import Robot
  • Author(s): Jordi Mallach, Emmanuel Kasper, Jordi Mallach
  • Date: 2012-06-05 20:02:23 UTC
  • mfrom: (0.3.1) (0.1.4)
  • Revision ID: package-import@ubuntu.com-20120605200223-gnlpogjrg6oqe9md
Tags: 0.146-1
[ Emmanuel Kasper ]
* New upstream release
* Drop patch to fix man pages section and patches to link with flac 
  and jpeg system lib: all this has been pushed upstream by Cesare Falco
* Add DM-Upload-Allowed: yes field.

[ Jordi Mallach ]
* Create a "gnu" TARGETOS stanza that defines NO_AFFINITY_NP.
* Stop setting TARGETOS to "unix" in d/rules. It should be autodetected,
  and set to the appropriate value.
* mame_manpage_section.patch: Change mame's manpage section to 6 (games),
  in the TH declaration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
{
11
11
public:
12
12
        arabian_state(const machine_config &mconfig, device_type type, const char *tag)
13
 
                : driver_device(mconfig, type, tag) { }
 
13
                : driver_device(mconfig, type, tag) ,
 
14
                m_custom_cpu_ram(*this, "custom_cpu_ram"),
 
15
                m_blitter(*this, "blitter"){ }
14
16
 
15
17
        /* memory pointers */
16
 
        UINT8 *  m_blitter;
17
 
        UINT8 *  m_custom_cpu_ram;
 
18
        required_shared_ptr<UINT8> m_custom_cpu_ram;
 
19
        required_shared_ptr<UINT8> m_blitter;
18
20
 
19
21
        UINT8 *  m_main_bitmap;
20
22
        UINT8 *  m_converted_gfx;
27
29
        UINT8    m_mcu_port_o;
28
30
        UINT8    m_mcu_port_p;
29
31
        UINT8    m_mcu_port_r[4];
 
32
        DECLARE_READ8_MEMBER(mcu_port_r_r);
 
33
        DECLARE_WRITE8_MEMBER(mcu_port_r_w);
 
34
        DECLARE_READ8_MEMBER(mcu_portk_r);
 
35
        DECLARE_WRITE8_MEMBER(mcu_port_o_w);
 
36
        DECLARE_WRITE8_MEMBER(mcu_port_p_w);
 
37
        DECLARE_WRITE8_MEMBER(arabian_blitter_w);
 
38
        DECLARE_WRITE8_MEMBER(arabian_videoram_w);
30
39
};
31
40
 
32
41
 
33
42
/*----------- defined in video/arabian.c -----------*/
34
43
 
35
 
WRITE8_HANDLER( arabian_blitter_w );
36
 
WRITE8_HANDLER( arabian_videoram_w );
37
44
 
38
45
PALETTE_INIT( arabian );
39
46
VIDEO_START( arabian );