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

« back to all changes in this revision

Viewing changes to src/mame/includes/vsnes.h

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach, Emmanuel Kasper, Félix Arreola Rodríguez, Jordi Mallach
  • Date: 2011-05-11 21:06:50 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110511210650-jizvh8a6x117y9hr
Tags: 0.142-1
[ Emmanuel Kasper ]
* New upstream release
* Set NOWERROR=1 to allow compiling with gcc-4.6
* Remove fix_powerpc_build.patch, as upstream has taken it in this release
* Add gnome-video-arcade front end as a suggested package

[ Félix Arreola Rodríguez ]
* Add kfreebsd-build.patch to quilt series, to fix build on kfreebsd

[ Jordi Mallach ]
* Remove unneeded and bogus addition of --with-quilt to the dh invocation.
* Add Cesare Falco (long time Ubuntu maintainer) to Uploaders, and wrap
  them into multiple lines.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
class vsnes_state : public driver_device
 
2
{
 
3
public:
 
4
        vsnes_state(running_machine &machine, const driver_device_config_base &config)
 
5
                : driver_device(machine, config) { }
 
6
 
 
7
        UINT8 *m_work_ram;
 
8
        UINT8 *m_work_ram_1;
 
9
        int m_coin;
 
10
        int m_do_vrom_bank;
 
11
        int m_input_latch[4];
 
12
        int m_sound_fix;
 
13
        UINT8 m_last_bank;
 
14
        UINT8* m_vram;
 
15
        UINT8* m_vrom[2];
 
16
        UINT8* m_nt_ram[2];
 
17
        UINT8* m_nt_page[2][4];
 
18
        UINT32 m_vrom_size[2];
 
19
        int m_vrom_banks;
 
20
        int m_zapstore;
 
21
        int m_old_bank;
 
22
        int m_drmario_shiftreg;
 
23
        int m_drmario_shiftcount;
 
24
        int m_size16k;
 
25
        int m_switchlow;
 
26
        int m_vrom4k;
 
27
        int m_MMC3_cmd;
 
28
        int m_MMC3_prg_bank[4];
 
29
        int m_MMC3_chr_bank[6];
 
30
        int m_MMC3_prg_mask;
 
31
        int m_IRQ_enable;
 
32
        int m_IRQ_count;
 
33
        int m_IRQ_count_latch;
 
34
        int m_VSindex;
 
35
        int m_supxevs_prot_index;
 
36
        int m_security_counter;
 
37
        int m_ret;
 
38
};
 
39
 
 
40
 
1
41
/*----------- defined in video/vsnes.c -----------*/
2
42
 
3
43
VIDEO_START( vsnes );
4
44
PALETTE_INIT( vsnes );
5
 
VIDEO_UPDATE( vsnes );
 
45
SCREEN_UPDATE( vsnes );
6
46
VIDEO_START( vsdual );
7
 
VIDEO_UPDATE( vsdual );
 
47
SCREEN_UPDATE( vsnes_bottom );
8
48
PALETTE_INIT( vsdual );
9
49
 
10
50
extern const ppu2c0x_interface vsnes_ppu_interface_1;