Previous 199869 Revisions Next

r18398 Wednesday 10th October, 2012 at 00:38:43 UTC by hap
..fixed prev commit
[src/mame/drivers]mw8080bw.c
[src/mame/layout]spcenctr.lay

trunk/src/mame/layout/spcenctr.lay
r18397r18398
3232      </screen>
3333
3434<!-- lamp and strobe reflect onto the inner bezel (and screen) -->
35<!-- NOTE: artwork system can't keep up with the strobe high frequency -->
3635      <bezel name="LAMP" element="lamp_red">
3736         <bounds left="0" top="0" right="376" bottom="300" />
3837         <color alpha="0.2" />
trunk/src/mame/drivers/mw8080bw.c
r18397r18398
22472247   MCFG_TIMER_PARAM(TRUE)   /* indicates strobe ON */
22482248
22492249   MCFG_TIMER_DRIVER_ADD_PERIODIC("strobeoff", mw8080bw_state, spcenctr_strobe_timer_callback, attotime::from_hz(SPCENCTR_STROBE_FREQ))
2250   MCFG_TIMER_START_DELAY(attotime::from_hz((SPCENCTR_STROBE_FREQ * 100) * (SPCENCTR_STROBE_DUTY_CYCLE / 100)))
2250   MCFG_TIMER_START_DELAY(attotime::from_hz(SPCENCTR_STROBE_FREQ) * (100 - SPCENCTR_STROBE_DUTY_CYCLE) / 100)
22512251   MCFG_TIMER_PARAM(FALSE)   /* indicates strobe OFF */
22522252
22532253   /* video hardware */

Previous 199869 Revisions Next


© 1997-2024 The MAME Team