ROM_END /************************************* * * Driver init * *************************************/ static DRIVER_INIT( capbowl ) { /* Initialize the ticket dispenser to 100 milliseconds */ /* (I'm not sure what the correct value really is) */ ticket_dispenser_init(100, TICKET_MOTOR_ACTIVE_HIGH, TICKET_STATUS_ACTIVE_LOW); }
static MACHINE_RESET( getrivia ) { ticket_dispenser_init(machine, 100, 1, 1); }