~ubuntu-branches/debian/wheezy/mame/wheezy

« back to all changes in this revision

Viewing changes to src/mame/drivers/sleic.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:
 
1
#include "emu.h"
 
2
#include "cpu/i86/i86.h"
 
3
 
 
4
extern const char layout_pinball[];
 
5
 
 
6
class sleic_state : public driver_device
 
7
{
 
8
public:
 
9
        sleic_state(running_machine &machine, const driver_device_config_base &config)
 
10
                : driver_device(machine, config) { }
 
11
};
 
12
 
 
13
 
 
14
static ADDRESS_MAP_START( sleic_map, AS_PROGRAM, 8 )
 
15
        AM_RANGE(0x0000, 0xffff) AM_NOP
 
16
        AM_RANGE(0x00000, 0x1ffff) AM_RAM
 
17
        AM_RANGE(0xe0000, 0xfffff) AM_ROM
 
18
ADDRESS_MAP_END
 
19
 
 
20
static INPUT_PORTS_START( sleic )
 
21
INPUT_PORTS_END
 
22
 
 
23
static MACHINE_RESET( sleic )
 
24
{
 
25
}
 
26
 
 
27
static DRIVER_INIT( sleic )
 
28
{
 
29
}
 
30
 
 
31
static MACHINE_CONFIG_START( sleic, sleic_state )
 
32
        /* basic machine hardware */
 
33
        MCFG_CPU_ADD("maincpu", I8088, 8000000)
 
34
        MCFG_CPU_PROGRAM_MAP(sleic_map)
 
35
 
 
36
        MCFG_MACHINE_RESET( sleic )
 
37
 
 
38
        /* video hardware */
 
39
        MCFG_DEFAULT_LAYOUT(layout_pinball)
 
40
MACHINE_CONFIG_END
 
41
 
 
42
/*-------------------------------------------------------------------
 
43
/ Bike Race (1992)
 
44
/-------------------------------------------------------------------*/
 
45
 
 
46
/*-------------------------------------------------------------------
 
47
/ Dona Elvira 2 (1996)
 
48
/-------------------------------------------------------------------*/
 
49
 
 
50
/*-------------------------------------------------------------------
 
51
/ Io Moon (1994)
 
52
/-------------------------------------------------------------------*/
 
53
 
 
54
/*-------------------------------------------------------------------
 
55
/ Sleic Pin Ball (1994)
 
56
/-------------------------------------------------------------------*/
 
57
ROM_START(sleicpin)
 
58
        ROM_REGION(0x100000, "maincpu", 0)
 
59
        ROM_LOAD("sp03-1_1.rom", 0xe0000, 0x20000, CRC(261b0ae4) SHA1(e7d9d1c2cab7776afb732701b0b8697b62a8d990))
 
60
        ROM_REGION(0x10000, "cpu2", 0)
 
61
        ROM_LOAD("sp01-1_1.rom", 0x0000, 0x2000, CRC(240015bb) SHA1(0e647718173ad59dafbf3b5bc84bef3c33886e23))
 
62
        ROM_REGION(0x10000, "cpu3", 0)
 
63
        ROM_LOAD("sp04-1_1.rom", 0x0000, 0x8000, CRC(84514cfa) SHA1(6aa87b86892afa534cf963821f08286c126b4245))
 
64
        ROM_REGION(0x100000, "user1", 0)
 
65
        ROM_LOAD("sp02-1_1.rom", 0x00000, 0x80000, CRC(0e4851a0) SHA1(0692ee2df0b560e2013db9c03fd27c6eb12e618d))
 
66
ROM_END
 
67
 
 
68
GAME(1993,      sleicpin,       0,      sleic,  sleic,  sleic,  ROT0,   "Sleic",        "Sleic Pin Ball",       GAME_NOT_WORKING | GAME_NO_SOUND | GAME_MECHANICAL)
 
69
 
 
70