trunk/src/mame/drivers/sleic.c
r18241 | r18242 | |
1 | | /********************************************************************************** |
| 1 | /************************************************************************************** |
2 | 2 | |
3 | | Pinball |
4 | | Sleic |
| 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. |
5 | 7 | |
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. |
7 | 22 | |
| 23 | The only real source of info is PinMAME, but the game only partially works there. |
| 24 | |
| 25 | ****************************************************************************************/ |
| 26 | |
8 | 27 | #include "emu.h" |
9 | 28 | #include "cpu/i86/i86.h" |
10 | 29 | |
r18241 | r18242 | |
29 | 48 | |
30 | 49 | |
31 | 50 | static ADDRESS_MAP_START( sleic_map, AS_PROGRAM, 8, sleic_state ) |
32 | | AM_RANGE(0x0000, 0xffff) AM_NOP |
33 | 51 | AM_RANGE(0x00000, 0x1ffff) AM_RAM |
34 | 52 | AM_RANGE(0xe0000, 0xfffff) AM_ROM |
35 | 53 | ADDRESS_MAP_END |