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

« back to all changes in this revision

Viewing changes to src/mame/includes/sidepckt.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:
2
2
{
3
3
public:
4
4
        sidepckt_state(const machine_config &mconfig, device_type type, const char *tag)
5
 
                : driver_device(mconfig, type, tag) { }
 
5
                : driver_device(mconfig, type, tag) ,
 
6
                m_videoram(*this, "videoram"),
 
7
                m_colorram(*this, "colorram"),
 
8
                m_spriteram(*this, "spriteram"){ }
6
9
 
7
10
        tilemap_t *m_bg_tilemap;
8
 
        UINT8 *m_colorram;
9
 
        UINT8 *m_videoram;
10
 
        size_t m_videoram_size;
11
 
        UINT8 *m_spriteram;
12
 
        size_t m_spriteram_size;
 
11
        required_shared_ptr<UINT8> m_videoram;
 
12
        required_shared_ptr<UINT8> m_colorram;
 
13
        required_shared_ptr<UINT8> m_spriteram;
13
14
        int m_i8751_return;
14
15
        int m_current_ptr;
15
16
        int m_current_table;
16
17
        int m_in_math;
17
18
        int m_math_param;
 
19
        DECLARE_WRITE8_MEMBER(sound_cpu_command_w);
 
20
        DECLARE_READ8_MEMBER(sidepckt_i8751_r);
 
21
        DECLARE_WRITE8_MEMBER(sidepckt_i8751_w);
 
22
        DECLARE_WRITE8_MEMBER(sidepctj_i8751_w);
 
23
        DECLARE_WRITE8_MEMBER(sidepckt_videoram_w);
 
24
        DECLARE_WRITE8_MEMBER(sidepckt_colorram_w);
 
25
        DECLARE_WRITE8_MEMBER(sidepckt_flipscreen_w);
18
26
};
19
27
 
20
28
 
24
32
VIDEO_START( sidepckt );
25
33
SCREEN_UPDATE_IND16( sidepckt );
26
34
 
27
 
WRITE8_HANDLER( sidepckt_flipscreen_w );
28
 
WRITE8_HANDLER( sidepckt_videoram_w );
29
 
WRITE8_HANDLER( sidepckt_colorram_w );