diff options
Diffstat (limited to 'src/emu/machine')
| -rw-r--r-- | src/emu/machine/8257dma.c | 2 | ||||
| -rw-r--r-- | src/emu/machine/smc91c9x.c | 2 | ||||
| -rw-r--r-- | src/emu/machine/z80dma.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/machine/8257dma.c b/src/emu/machine/8257dma.c index f8a322cad1c..6a15c364b89 100644 --- a/src/emu/machine/8257dma.c +++ b/src/emu/machine/8257dma.c @@ -325,7 +325,7 @@ WRITE8_DEVICE_HANDLER( dma8257_drq_w ) { dma8257_t *dma8257 = get_safe_token(device); int param = (offset << 1) | (data ? 1 : 0); - + timer_call_after_resynch(dma8257, param, dma8257_drq_write_callback); } diff --git a/src/emu/machine/smc91c9x.c b/src/emu/machine/smc91c9x.c index 6926269b0d1..0c5212aa98f 100644 --- a/src/emu/machine/smc91c9x.c +++ b/src/emu/machine/smc91c9x.c @@ -549,7 +549,7 @@ static DEVICE_START( smc91c9x ) static DEVICE_RESET( smc91c9x ) { smc91c9x_state *smc = get_safe_token(device); - + memset(smc->reg, 0, sizeof(smc->reg)); memset(smc->regmask, 0, sizeof(smc->regmask)); smc->irq_state = 0; diff --git a/src/emu/machine/z80dma.c b/src/emu/machine/z80dma.c index 8d80380735c..414b05f39e3 100644 --- a/src/emu/machine/z80dma.c +++ b/src/emu/machine/z80dma.c @@ -402,7 +402,7 @@ WRITE8_DEVICE_HANDLER( z80dma_rdy_w) int param; assert( offset == 0); - + param = (data ? 1 : 0); LOG(("RDY: %d Active High: %d\n", data, READY_ACTIVE_HIGH(z80dma))); timer_call_after_resynch(z80dma, param, z80dma_rdy_write_callback); |
