diff --git a/src/emu/machine/8237dma.c b/src/emu/machine/8237dma.c index 50dd5b23fa8..418e4221cfe 100644 --- a/src/emu/machine/8237dma.c +++ b/src/emu/machine/8237dma.c @@ -608,22 +608,6 @@ WRITE_LINE_DEVICE_HANDLER( i8237_eop_w ) } -/******************* Unfortunate hacks *******************/ - -void i8237_run_transfer(const device_config *device, int channel) -{ - i8237_t *i8237 = get_safe_token(device); - - i8237->status |= 0x10 << channel; /* reset DMA running flag */ - - popmessage("dma8237_run_transfer(): please do not use me anymore\n"); - - i8237->status &= ~(0x10 << channel); - i8237->status |= (0x01 << channel); -} - - - static DEVICE_START( i8237 ) { i8237_t *i8237 = get_safe_token(device); i8237_interface *intf = (i8237_interface *)device->static_config; diff --git a/src/emu/machine/8237dma.h b/src/emu/machine/8237dma.h index acfab84cd75..07eb7f799f2 100644 --- a/src/emu/machine/8237dma.h +++ b/src/emu/machine/8237dma.h @@ -93,7 +93,4 @@ WRITE_LINE_DEVICE_HANDLER( i8237_eop_w ); DEVICE_GET_INFO( i8237 ); -/* unfortunate hack for the interim for PC HDC */ -void i8237_run_transfer(const device_config *device, int channel); - #endif