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

« back to all changes in this revision

Viewing changes to src/mame/includes/nbmj8891.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 nbmj8891_state : public driver_device
 
2
{
 
3
public:
 
4
        nbmj8891_state(running_machine &machine, const driver_device_config_base &config)
 
5
                : driver_device(machine, config) { }
 
6
 
 
7
        int m_scrolly;
 
8
        int m_blitter_destx;
 
9
        int m_blitter_desty;
 
10
        int m_blitter_sizex;
 
11
        int m_blitter_sizey;
 
12
        int m_blitter_src_addr;
 
13
        int m_blitter_direction_x;
 
14
        int m_blitter_direction_y;
 
15
        int m_vram;
 
16
        int m_gfxrom;
 
17
        int m_dispflag;
 
18
        int m_flipscreen;
 
19
        int m_clutsel;
 
20
        int m_screen_refresh;
 
21
        int m_gfxdraw_mode;
 
22
        bitmap_t *m_tmpbitmap0;
 
23
        bitmap_t *m_tmpbitmap1;
 
24
        UINT8 *m_videoram0;
 
25
        UINT8 *m_videoram1;
 
26
        UINT8 *m_palette;
 
27
        UINT8 *m_clut;
 
28
        int m_param_old[0x10];
 
29
        int m_param_cnt;
 
30
        int m_flipscreen_old;
 
31
};
 
32
 
 
33
 
1
34
/*----------- defined in video/nbmj8891.c -----------*/
2
35
 
3
 
VIDEO_UPDATE( nbmj8891 );
 
36
SCREEN_UPDATE( nbmj8891 );
4
37
VIDEO_START( nbmj8891_1layer );
5
38
VIDEO_START( nbmj8891_2layer );
6
39