static READ8_DEVICE_HANDLER( yiear_speech_r ) { if (vlm5030_bsy(device)) return 1; else return 0; }
static READ8_DEVICE_HANDLER( ddribble_vlm5030_busy_r ) { return device->machine->rand(); /* patch */ /* FIXME: remove ? */ #if 0 if (vlm5030_bsy(device)) return 1; else return 0; #endif }
static READ8_DEVICE_HANDLER( jailbrek_speech_r ) { return (vlm5030_bsy(device) ? 1 : 0); }
static CUSTOM_INPUT( punchout_vlm5030_busy_r ) { /* bit 4 of DSW1 is busy pin level */ return (vlm5030_bsy(devtag_get_device(field->port->machine, "vlm"))) ? 0x00 : 0x01; }