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

« back to all changes in this revision

Viewing changes to src/mame/drivers/rcorsair.c

  • 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:
49
49
#include "emu.h"
50
50
#include "cpu/i8085/i8085.h"
51
51
 
52
 
static ADDRESS_MAP_START( rcorsair_map, ADDRESS_SPACE_PROGRAM, 8 )
 
52
 
 
53
class rcorsair_state : public driver_device
 
54
{
 
55
public:
 
56
        rcorsair_state(running_machine &machine, const driver_device_config_base &config)
 
57
                : driver_device(machine, config) { }
 
58
 
 
59
};
 
60
 
 
61
 
 
62
static ADDRESS_MAP_START( rcorsair_map, AS_PROGRAM, 8 )
53
63
        AM_RANGE(0x0000, 0x1fff) AM_ROM
54
64
ADDRESS_MAP_END
55
65
 
100
110
{
101
111
}
102
112
 
103
 
static VIDEO_UPDATE( rcorsair )
 
113
static SCREEN_UPDATE( rcorsair )
104
114
{
105
115
 
106
116
        return 0;
107
117
}
108
118
 
109
 
static MACHINE_CONFIG_START( rcorsair, driver_device )
 
119
static MACHINE_CONFIG_START( rcorsair, rcorsair_state )
110
120
 
111
121
        /* Main CPU is probably inside Custom Block with
112
122
       program code, unknown type */
121
131
        MCFG_SCREEN_FORMAT(BITMAP_FORMAT_INDEXED16)
122
132
        MCFG_SCREEN_SIZE(256, 256)
123
133
        MCFG_SCREEN_VISIBLE_AREA(0, 256-1, 0, 256-1)
 
134
        MCFG_SCREEN_UPDATE(rcorsair)
124
135
 
125
136
        MCFG_GFXDECODE(rcorsair)
126
137
        MCFG_PALETTE_LENGTH(0x100)
127
138
 
128
139
        MCFG_VIDEO_START(rcorsair)
129
 
        MCFG_VIDEO_UPDATE(rcorsair)
130
140
MACHINE_CONFIG_END
131
141
 
132
142
ROM_START( rcorsair )