Previous 199869 Revisions Next

r36097 Tuesday 24th February, 2015 at 20:16:08 UTC by James Wallace
Fixed regression with bfm_sc2 reels (nw)
[/branches/kale/src/mame/drivers]bfm_sc2.c

branches/kale/src/mame/drivers/bfm_sc2.c
r244608r244609
36183618   /* video hardware */
36193619   MCFG_DEFAULT_LAYOUT(layout_sc2_vfd)
36203620
3621   MCFG_DEVICE_ADD("reel0", STEPPER, 0)
3621   MCFG_STARPOINT_48STEP_ADD("reel0")
36223622   MCFG_STEPPER_OPTIC_CALLBACK(WRITELINE(bfm_sc2_state, reel0_optic_cb))
3623   MCFG_DEVICE_ADD("reel1", STEPPER, 0)
3623   MCFG_STARPOINT_48STEP_ADD("reel1")
36243624   MCFG_STEPPER_OPTIC_CALLBACK(WRITELINE(bfm_sc2_state, reel1_optic_cb))
3625   MCFG_DEVICE_ADD("reel2", STEPPER, 0)
3625   MCFG_STARPOINT_48STEP_ADD("reel2")
36263626   MCFG_STEPPER_OPTIC_CALLBACK(WRITELINE(bfm_sc2_state, reel2_optic_cb))
3627   MCFG_DEVICE_ADD("reel3", STEPPER, 0)
3627   MCFG_STARPOINT_48STEP_ADD("reel3")
36283628   MCFG_STEPPER_OPTIC_CALLBACK(WRITELINE(bfm_sc2_state, reel3_optic_cb))
3629   MCFG_DEVICE_ADD("reel4", STEPPER, 0)
3629   MCFG_STARPOINT_48STEP_ADD("reel4")
36303630   MCFG_STEPPER_OPTIC_CALLBACK(WRITELINE(bfm_sc2_state, reel4_optic_cb))
3631   MCFG_DEVICE_ADD("reel5", STEPPER, 0)
3631   MCFG_STARPOINT_48STEP_ADD("reel5")
36323632   MCFG_STEPPER_OPTIC_CALLBACK(WRITELINE(bfm_sc2_state, reel5_optic_cb))
36333633MACHINE_CONFIG_END
36343634
r244608r244609
36683668   MCFG_CPU_PROGRAM_MAP(bfm_dm01_memmap)
36693669   MCFG_CPU_PERIODIC_INT_DRIVER(bfm_sc2_state, nmi_line_assert, 1500 )          /* generate 1500 NMI's per second ?? what is the exact freq?? */
36703670
3671   MCFG_DEVICE_ADD("reel0", STEPPER, 0)
3671   MCFG_STARPOINT_48STEP_ADD("reel0")
36723672   MCFG_STEPPER_OPTIC_CALLBACK(WRITELINE(bfm_sc2_state, reel0_optic_cb))
3673   MCFG_DEVICE_ADD("reel1", STEPPER, 0)
3673   MCFG_STARPOINT_48STEP_ADD("reel1")
36743674   MCFG_STEPPER_OPTIC_CALLBACK(WRITELINE(bfm_sc2_state, reel1_optic_cb))
3675   MCFG_DEVICE_ADD("reel2", STEPPER, 0)
3675   MCFG_STARPOINT_48STEP_ADD("reel2")
36763676   MCFG_STEPPER_OPTIC_CALLBACK(WRITELINE(bfm_sc2_state, reel2_optic_cb))
3677   MCFG_DEVICE_ADD("reel3", STEPPER, 0)
3677   MCFG_STARPOINT_48STEP_ADD("reel3")
36783678   MCFG_STEPPER_OPTIC_CALLBACK(WRITELINE(bfm_sc2_state, reel3_optic_cb))
3679   MCFG_DEVICE_ADD("reel4", STEPPER, 0)
3679   MCFG_STARPOINT_48STEP_ADD("reel4")
36803680   MCFG_STEPPER_OPTIC_CALLBACK(WRITELINE(bfm_sc2_state, reel4_optic_cb))
3681   MCFG_DEVICE_ADD("reel5", STEPPER, 0)
3681   MCFG_STARPOINT_48STEP_ADD("reel5")
36823682   MCFG_STEPPER_OPTIC_CALLBACK(WRITELINE(bfm_sc2_state, reel5_optic_cb))
36833683MACHINE_CONFIG_END
36843684


Previous 199869 Revisions Next


© 1997-2024 The MAME Team