Previous 199869 Revisions Next

r18242 Tuesday 2nd October, 2012 at 09:59:54 UTC by Robbbert
SLEIC - added notes
[src/mame/drivers]sleic.c

trunk/src/mame/drivers/sleic.c
r18241r18242
1/**********************************************************************************
1/**************************************************************************************
22
3Pinball
4Sleic
3    Pinball
4    Sleic made a number of pinball machines (Pinball, Bike Race, Dona Elvira 2,
5    Super Pang, Io Moon) but seems only Pinball is dumped. The only manual I could
6    find is in Spanish and has no schematics.
57
6***********************************************************************************/
8    Principal components:
9    80C188-10
10    80C39-11
11    27C64
12    27C040
13    27C010
14    28C64A
15    6376 (Voice Synthesiser by OKI)
16    YM3812 (Sound Generator by Yamaha)
17    YM3014 (DAC Sounds by Yamaha)
18    X9103 NVRAM
19    Z80A
20    27C256
21    PinMAME also has a PIC8259.
722
23    The only real source of info is PinMAME, but the game only partially works there.
24
25****************************************************************************************/
26
827#include "emu.h"
928#include "cpu/i86/i86.h"
1029
r18241r18242
2948
3049
3150static ADDRESS_MAP_START( sleic_map, AS_PROGRAM, 8, sleic_state )
32   AM_RANGE(0x0000, 0xffff) AM_NOP
3351   AM_RANGE(0x00000, 0x1ffff) AM_RAM
3452   AM_RANGE(0xe0000, 0xfffff) AM_ROM
3553ADDRESS_MAP_END

Previous 199869 Revisions Next


© 1997-2024 The MAME Team