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

« back to all changes in this revision

Viewing changes to src/mame/includes/cd32.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:
8
8
#define __CUBOCD32_H__
9
9
 
10
10
#include "includes/amiga.h"
 
11
#include "machine/microtch.h"
11
12
 
12
13
class cd32_state : public amiga_state
13
14
{
14
15
public:
15
16
        cd32_state(const machine_config &mconfig, device_type type, const char *tag)
16
 
                : amiga_state(mconfig, type, tag) { }
17
 
 
 
17
                : amiga_state(mconfig, type, tag),
 
18
                  m_microtouch(*this, "microtouch")
 
19
                { }
 
20
 
 
21
        required_device<microtouch_device> m_microtouch;
 
22
 
 
23
        DECLARE_WRITE8_MEMBER(microtouch_tx);
18
24
        UINT16 m_potgo_value;
19
25
        int m_cd32_shifter[2];
20
26
        void (*m_input_hack)(running_machine &machine);
21
27
        int m_oldstate[2];
 
28
        DECLARE_CUSTOM_INPUT_MEMBER(cubo_input);
 
29
        DECLARE_WRITE32_MEMBER(aga_overlay_w);
22
30
};
23
31
 
24
32
/*----------- defined in machine/cd32.c -----------*/