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

« back to all changes in this revision

Viewing changes to src/mame/includes/foodf.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:
12
12
public:
13
13
        foodf_state(const machine_config &mconfig, device_type type, const char *tag)
14
14
                : atarigen_state(mconfig, type, tag),
15
 
                  m_nvram(*this, "nvram") { }
 
15
                  m_nvram(*this, "nvram"),
 
16
                  m_spriteram(*this, "spriteram") { }
16
17
 
17
18
        required_device<x2212_device> m_nvram;
18
19
 
22
23
        UINT8                   m_playfield_flip;
23
24
 
24
25
        UINT8                   m_whichport;
25
 
        UINT16 *m_spriteram;
 
26
        required_shared_ptr<UINT16> m_spriteram;
 
27
        DECLARE_WRITE16_MEMBER(nvram_recall_w);
 
28
        DECLARE_WRITE8_MEMBER(digital_w);
 
29
        DECLARE_READ16_MEMBER(analog_r);
 
30
        DECLARE_WRITE16_MEMBER(analog_w);
 
31
        DECLARE_WRITE16_MEMBER(foodf_paletteram_w);
 
32
        void foodf_set_flip(int flip);
26
33
};
27
34
 
28
35
 
29
36
/*----------- defined in video/foodf.c -----------*/
30
37
 
31
 
WRITE16_HANDLER( foodf_paletteram_w );
32
 
 
33
 
void foodf_set_flip(foodf_state *state, int flip);
34
38
VIDEO_START( foodf );
35
39
SCREEN_UPDATE_IND16( foodf );