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

« back to all changes in this revision

Viewing changes to src/mame/includes/namcond1.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
        namcond1_state(const machine_config &mconfig, device_type type, const char *tag)
13
 
                : driver_device(mconfig, type, tag) { }
 
13
                : driver_device(mconfig, type, tag) ,
 
14
                m_shared_ram(*this, "shared_ram"){ }
14
15
 
15
16
        UINT8 m_h8_irq5_enabled;
16
 
        UINT16 *m_shared_ram;
 
17
        required_shared_ptr<UINT16> m_shared_ram;
17
18
        int m_p8;
 
19
        DECLARE_WRITE16_MEMBER(sharedram_sub_w);
 
20
        DECLARE_READ16_MEMBER(sharedram_sub_r);
 
21
        DECLARE_READ8_MEMBER(mcu_p7_read);
 
22
        DECLARE_READ8_MEMBER(mcu_pa_read);
 
23
        DECLARE_WRITE8_MEMBER(mcu_pa_write);
 
24
        DECLARE_READ16_MEMBER(namcond1_shared_ram_r);
 
25
        DECLARE_READ16_MEMBER(namcond1_cuskey_r);
 
26
        DECLARE_WRITE16_MEMBER(namcond1_shared_ram_w);
 
27
        DECLARE_WRITE16_MEMBER(namcond1_cuskey_w);
18
28
};
19
29
 
20
30
 
21
31
/*----------- defined in machine/namcond1.c -----------*/
22
32
 
23
 
READ16_HANDLER( namcond1_shared_ram_r );
24
 
READ16_HANDLER( namcond1_cuskey_r );
25
 
WRITE16_HANDLER( namcond1_shared_ram_w );
26
 
WRITE16_HANDLER( namcond1_cuskey_w );
27
33
 
28
34
MACHINE_START( namcond1 );
29
35
MACHINE_RESET( namcond1 );