trunk/src/mame/drivers/s3.c
| r18675 | r18676 | |
| 12 | 12 | When first used, the nvram gets initialised but is otherwise unusable. A reboot |
| 13 | 13 | will get it going. |
| 14 | 14 | |
| 15 | | By pressing 9, you can select a different set of sounds. This is switch SW2 on |
| 15 | By pressing 4, you can select a different set of sounds. This is switch SW2 on |
| 16 | 16 | the real board. |
| 17 | 17 | |
| 18 | 18 | ToDo: |
| 19 | | - Diagnostic controls |
| 20 | 19 | - Add 10k chime when added to samples. |
| 21 | | - Hot Tip and Lucky 7 should play a tune when starting a game. |
| 22 | 20 | |
| 23 | 21 | |
| 24 | 22 | ************************************************************************************/ |
| r18675 | r18676 | |
| 509 | 507 | /* basic machine hardware */ |
| 510 | 508 | MCFG_CPU_ADD("maincpu", M6800, 3580000) |
| 511 | 509 | MCFG_CPU_PROGRAM_MAP(s3_main_map) |
| 512 | | MCFG_TIMER_DRIVER_ADD_PERIODIC("irq", s3_state, irq, attotime::from_hz(1000)) |
| 510 | MCFG_TIMER_DRIVER_ADD_PERIODIC("irq", s3_state, irq, attotime::from_hz(250)) |
| 513 | 511 | MCFG_MACHINE_RESET_OVERRIDE(s3_state, s3) |
| 514 | 512 | |
| 515 | 513 | /* Video */ |