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

« back to all changes in this revision

Viewing changes to src/mame/includes/atarisy2.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
        atarisy2_state(const machine_config &mconfig, device_type type, const char *tag)
13
 
                : atarigen_state(mconfig, type, tag) { }
 
13
                : atarigen_state(mconfig, type, tag),
 
14
                  m_slapstic_base(*this, "slapstic_base"),
 
15
                  m_bankselect(*this, "bankselect"),
 
16
                  m_rombank1(*this, "rombank1"),
 
17
                  m_rombank2(*this, "rombank2") { }
14
18
 
15
 
        UINT16 *                m_slapstic_base;
 
19
        required_shared_ptr<UINT16> m_slapstic_base;
16
20
 
17
21
        UINT8                   m_interrupt_enable;
18
 
        UINT16 *                m_bankselect;
 
22
        required_shared_ptr<UINT16> m_bankselect;
19
23
 
20
24
        INT8                    m_pedal_count;
21
25
 
26
30
        UINT8                   m_p2portwr_state;
27
31
        UINT8                   m_p2portrd_state;
28
32
 
29
 
        UINT16 *                m_rombank1;
30
 
        UINT16 *                m_rombank2;
 
33
        required_shared_ptr<UINT16> m_rombank1;
 
34
        required_shared_ptr<UINT16> m_rombank2;
31
35
 
32
36
        UINT8                   m_sound_reset_state;
33
37
 
45
49
        UINT32                  m_spin_center_count;
46
50
 
47
51
        UINT16                  m_vram[0x8000/2];
 
52
        DECLARE_WRITE16_MEMBER(int0_ack_w);
 
53
        DECLARE_WRITE16_MEMBER(int1_ack_w);
 
54
        DECLARE_WRITE16_MEMBER(int_enable_w);
 
55
        DECLARE_WRITE16_MEMBER(bankselect_w);
 
56
        DECLARE_READ16_MEMBER(switch_r);
 
57
        DECLARE_READ8_MEMBER(switch_6502_r);
 
58
        DECLARE_WRITE8_MEMBER(switch_6502_w);
 
59
        DECLARE_WRITE16_MEMBER(adc_strobe_w);
 
60
        DECLARE_READ16_MEMBER(adc_r);
 
61
        DECLARE_READ8_MEMBER(leta_r);
 
62
        DECLARE_WRITE8_MEMBER(mixer_w);
 
63
        DECLARE_WRITE8_MEMBER(sound_reset_w);
 
64
        DECLARE_READ16_MEMBER(sound_r);
 
65
        DECLARE_WRITE8_MEMBER(sound_6502_w);
 
66
        DECLARE_READ8_MEMBER(sound_6502_r);
 
67
        DECLARE_WRITE8_MEMBER(tms5220_w);
 
68
        DECLARE_WRITE8_MEMBER(tms5220_strobe_w);
 
69
        DECLARE_WRITE8_MEMBER(coincount_w);
 
70
        DECLARE_DIRECT_UPDATE_MEMBER(atarisy2_direct_handler);
48
71
};
49
72
 
50
73