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

« back to all changes in this revision

Viewing changes to src/mame/includes/speedspn.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
        speedspn_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_attram(*this, "attram"){ }
6
7
 
7
 
        UINT8 *m_attram;
 
8
        required_shared_ptr<UINT8> m_attram;
8
9
        tilemap_t *m_tilemap;
9
10
        UINT8 m_display_disable;
10
11
        int m_bank_vidram;
11
12
        UINT8* m_vidram;
 
13
        DECLARE_READ8_MEMBER(speedspn_irq_ack_r);
 
14
        DECLARE_WRITE8_MEMBER(speedspn_banked_rom_change);
 
15
        DECLARE_WRITE8_MEMBER(speedspn_sound_w);
 
16
        DECLARE_WRITE8_MEMBER(speedspn_vidram_w);
 
17
        DECLARE_WRITE8_MEMBER(speedspn_attram_w);
 
18
        DECLARE_READ8_MEMBER(speedspn_vidram_r);
 
19
        DECLARE_WRITE8_MEMBER(speedspn_banked_vidram_change);
 
20
        DECLARE_WRITE8_MEMBER(speedspn_global_display_w);
12
21
};
13
22
 
14
23
 
17
26
VIDEO_START( speedspn );
18
27
SCREEN_UPDATE_IND16( speedspn );
19
28
 
20
 
WRITE8_HANDLER( speedspn_vidram_w );
21
 
WRITE8_HANDLER( speedspn_attram_w );
22
 
READ8_HANDLER( speedspn_vidram_r );
23
 
WRITE8_HANDLER( speedspn_banked_vidram_change );
24
 
WRITE8_HANDLER( speedspn_global_display_w );
25
29